Skip to content

πŸ› οΈ Loader ​

This is a work-in-progress. It's indicated with the πŸ› οΈ emoji in the page name or in the category name. Wanna help? Please reach out to me: @_nwodtuhs

The following piece of C code is a simple example of DLL loader, where the DLL holds the malicious shellcode.

c
#include 
#include 

int main(void) {
 HMODULE hMod = LoadLibrary("shellcode.dll");
 if (hMod == nullptr) {
 cout << "Failed to load shellcode.dll" << endl;
 }

 return 0;
}

Once the payload is completed, pe-sieve can be used to identify if it is stealthy or not.