Files
bruteratel/BruteRatel-v2.1.2/adhoc_scripts/shellcode_loader_samples/shellcode.h
T
2026-08-27 11:22:43 -06:00

11 lines
316 B
C

#include <windows.h>
// add your shellcode here
// bin files can be converted to shellcode using the following command on kali or ubuntu:
// xxd -i badger.bin
// copy the output for the above command in this file
unsigned char badger_bin[] = {
};
// copy your shellcode length here
unsigned int badger_bin_len = 0;