Skip to content

Instantly share code, notes, and snippets.

@Ice3man543
Created April 23, 2018 14:14
Show Gist options
  • Save Ice3man543/cf1443c9ee1712aaae53f7ee2c4075d4 to your computer and use it in GitHub Desktop.
Save Ice3man543/cf1443c9ee1712aaae53f7ee2c4075d4 to your computer and use it in GitHub Desktop.
LoadLibrary Test
#include <windows.h>
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("\n[*] TestDLL : Test LoadLibraryA Function");
LoadLibrary(argv[1]);
printf("\n[-] Done ");
getchar();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment