mirror of
https://github.com/r00tkiter/PE2Shellcode
synced 2026-06-08 16:53:41 +00:00
添加项目文件。
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user