添加项目文件。

This commit is contained in:
DrLyoko
2020-01-10 00:05:02 +08:00
commit a9e1d6e4cd
31 changed files with 3190 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#include <Windows.h>
#include <iostream>
#include "PePacket.h"
int wmain(int argc, wchar_t * argv[])
{
CPePacket pePacket;
if (pePacket.ParsePara(argc, argv))
{
printf("Invaild para\n");
exit(0);
}
pePacket.GenerateShellCode();
return 0;
}