Skip to content

Instantly share code, notes, and snippets.

@marcusbotacin
Created September 28, 2020 20:18
Embed
What would you like to do?
Injected DLL Loader
#ifdef INJECT
char cmd[10*NAME_SIZE] = "C:\\Windows\\system32\\rundll32.exe";
sprintf(args,"%s %s,#1",cmd,name);
CreateProcessA(cmd,args,NULL,NULL,FALSE,0,NULL,NULL,&si,&pi );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment