Skip to content
This repository was archived by the owner on Dec 18, 2023. It is now read-only.

Commit 1e58d53

Browse files
committed
Upload
Just Upload
1 parent ad47bfe commit 1e58d53

34 files changed

Lines changed: 3270 additions & 0 deletions

EXE2SHELLCODE.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.33027.164
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXE2SHELLCODE", "EXE2SHELLCODE\EXE2SHELLCODE.csproj", "{860B03B8-C5A1-426E-A19C-D28F511405FD}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{860B03B8-C5A1-426E-A19C-D28F511405FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{860B03B8-C5A1-426E-A19C-D28F511405FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{860B03B8-C5A1-426E-A19C-D28F511405FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{860B03B8-C5A1-426E-A19C-D28F511405FD}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {CB8630BD-1B08-4517-AFAC-D0D31615CDA7}
24+
EndGlobalSection
25+
EndGlobal

EXE2SHELLCODE/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
5+
</startup>
6+
</configuration>

EXE2SHELLCODE/EXE2SHELLCODE.csproj

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{860B03B8-C5A1-426E-A19C-D28F511405FD}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>EXE2SHELLCODE</RootNamespace>
10+
<AssemblyName>EXE2SHELLCODE</AssemblyName>
11+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<Deterministic>true</Deterministic>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PlatformTarget>AnyCPU</PlatformTarget>
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\Debug\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<PlatformTarget>AnyCPU</PlatformTarget>
27+
<DebugType>pdbonly</DebugType>
28+
<Optimize>true</Optimize>
29+
<OutputPath>bin\Release\</OutputPath>
30+
<DefineConstants>TRACE</DefineConstants>
31+
<ErrorReport>prompt</ErrorReport>
32+
<WarningLevel>4</WarningLevel>
33+
</PropertyGroup>
34+
<PropertyGroup>
35+
<StartupObject>EXE2SHELLCODE.Program</StartupObject>
36+
</PropertyGroup>
37+
<PropertyGroup>
38+
<ApplicationIcon>h20.ico</ApplicationIcon>
39+
</PropertyGroup>
40+
<ItemGroup>
41+
<Reference Include="System" />
42+
<Reference Include="System.Core" />
43+
<Reference Include="System.Xml.Linq" />
44+
<Reference Include="System.Data.DataSetExtensions" />
45+
<Reference Include="Microsoft.CSharp" />
46+
<Reference Include="System.Data" />
47+
<Reference Include="System.Deployment" />
48+
<Reference Include="System.Drawing" />
49+
<Reference Include="System.Net.Http" />
50+
<Reference Include="System.Windows.Forms" />
51+
<Reference Include="System.Xml" />
52+
</ItemGroup>
53+
<ItemGroup>
54+
<Compile Include="Form1.cs">
55+
<SubType>Form</SubType>
56+
</Compile>
57+
<Compile Include="Form1.Designer.cs">
58+
<DependentUpon>Form1.cs</DependentUpon>
59+
</Compile>
60+
<Compile Include="Program.cs" />
61+
<Compile Include="Properties\AssemblyInfo.cs" />
62+
<EmbeddedResource Include="Form1.resx">
63+
<DependentUpon>Form1.cs</DependentUpon>
64+
</EmbeddedResource>
65+
<EmbeddedResource Include="Properties\Resources.resx">
66+
<Generator>ResXFileCodeGenerator</Generator>
67+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
68+
<SubType>Designer</SubType>
69+
</EmbeddedResource>
70+
<Compile Include="Properties\Resources.Designer.cs">
71+
<AutoGen>True</AutoGen>
72+
<DependentUpon>Resources.resx</DependentUpon>
73+
<DesignTime>True</DesignTime>
74+
</Compile>
75+
<None Include="Properties\Settings.settings">
76+
<Generator>SettingsSingleFileGenerator</Generator>
77+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
78+
</None>
79+
<Compile Include="Properties\Settings.Designer.cs">
80+
<AutoGen>True</AutoGen>
81+
<DependentUpon>Settings.settings</DependentUpon>
82+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
83+
</Compile>
84+
</ItemGroup>
85+
<ItemGroup>
86+
<None Include="App.config" />
87+
</ItemGroup>
88+
<ItemGroup>
89+
<None Include="Resources\donut.exe" />
90+
</ItemGroup>
91+
<ItemGroup>
92+
<None Include="Resources\pe2shc.exe" />
93+
</ItemGroup>
94+
<ItemGroup>
95+
<Content Include="h20.ico" />
96+
</ItemGroup>
97+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
98+
</Project>

EXE2SHELLCODE/Form1.Designer.cs

Lines changed: 191 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)