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.

Revisions

  1. Ice3man543 created this gist Apr 23, 2018.
    11 changes: 11 additions & 0 deletions testloadlibrary.c
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    #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;
    }