11 lines
316 B
C
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; |