mirror of
https://github.com/r00tkiter/PE2Shellcode
synced 2026-06-08 16:53:41 +00:00
20 lines
256 B
C++
20 lines
256 B
C++
#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;
|
|
} |