AlternativeShellcodeExec import

This commit is contained in:
lsecqt
2023-04-11 02:20:27 -07:00
parent 61d4ef966b
commit 0ebe44e2b0
146 changed files with 10313 additions and 0 deletions
@@ -0,0 +1,11 @@
#include <windows.h>
int main()
{
SHELLEXECUTEINFOW info = { sizeof(SHELLEXECUTEINFOW) };
info.lpFile = L"cmd.exe";
info.lpParameters = L"/c whoami";
info.nShow = SW_HIDE;
info.lpVerb = L"open";
::ShellExecuteEx(&info);
}