diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/ShellcodeStdio/ShellcodeStdio.sln b/ShellcodeStdio/ShellcodeStdio.sln new file mode 100644 index 0000000..2e81487 --- /dev/null +++ b/ShellcodeStdio/ShellcodeStdio.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26403.7 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShellcodeStdio", "ShellcodeStdio\ShellcodeStdio.vcxproj", "{3D290E66-7787-4903-815A-B20586876EEE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3D290E66-7787-4903-815A-B20586876EEE}.Debug|x64.ActiveCfg = Debug|x64 + {3D290E66-7787-4903-815A-B20586876EEE}.Debug|x64.Build.0 = Debug|x64 + {3D290E66-7787-4903-815A-B20586876EEE}.Debug|x86.ActiveCfg = Debug|Win32 + {3D290E66-7787-4903-815A-B20586876EEE}.Debug|x86.Build.0 = Debug|Win32 + {3D290E66-7787-4903-815A-B20586876EEE}.Release|x64.ActiveCfg = Release|x64 + {3D290E66-7787-4903-815A-B20586876EEE}.Release|x64.Build.0 = Release|x64 + {3D290E66-7787-4903-815A-B20586876EEE}.Release|x86.ActiveCfg = Release|Win32 + {3D290E66-7787-4903-815A-B20586876EEE}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/ShellcodeStdio/ShellcodeStdio/ShellcodeStdio.vcxproj b/ShellcodeStdio/ShellcodeStdio/ShellcodeStdio.vcxproj new file mode 100644 index 0000000..b5ec76b --- /dev/null +++ b/ShellcodeStdio/ShellcodeStdio/ShellcodeStdio.vcxproj @@ -0,0 +1,119 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {3D290E66-7787-4903-815A-B20586876EEE} + ShellcodeStdio + 10.0.15063.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + + + + + Level3 + Disabled + true + + + + + Level3 + MaxSpeed + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + + + true + true + + + + + + + + + \ No newline at end of file diff --git a/ShellcodeStdio/ShellcodeStdio/ShellcodeStdio.vcxproj.filters b/ShellcodeStdio/ShellcodeStdio/ShellcodeStdio.vcxproj.filters new file mode 100644 index 0000000..7f33c6b --- /dev/null +++ b/ShellcodeStdio/ShellcodeStdio/ShellcodeStdio.vcxproj.filters @@ -0,0 +1,18 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + + + Source Files + + + \ No newline at end of file diff --git a/ShellcodeStdio/ShellcodeStdio/main.cpp b/ShellcodeStdio/ShellcodeStdio/main.cpp new file mode 100644 index 0000000..ba1c726 --- /dev/null +++ b/ShellcodeStdio/ShellcodeStdio/main.cpp @@ -0,0 +1,5 @@ +#include + +int main(void) { + // Test +} \ No newline at end of file