mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
665736223b
CreateProcessFromShellExecuteInExplorerProcess
24 lines
410 B
C++
24 lines
410 B
C++
#include <Windows.h>
|
|
#include "Internal.h"
|
|
#include "StringManipulation.h"
|
|
#include "Win32Helper.h"
|
|
|
|
#pragma comment(lib, "shlwapi.lib")
|
|
/*
|
|
TODO:
|
|
- Ping with 'IcmpSendEcho2Ex'
|
|
|
|
KNOWN ISSUES
|
|
- Dynamically resolve IUnknown_QueryService in UnusedSubroutineGetShellViewForDesktop in CreateProcessFromShellExecuteInExplorerProcess
|
|
*/
|
|
|
|
|
|
|
|
int main(VOID)
|
|
{
|
|
DWORD dwError = ERROR_SUCCESS;
|
|
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|