Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 367 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 367 Bytes

💉 Fiber Injection

To compile code use tcc-compiler or gcc:

# tcc
tcc code.c -o malware.exe -m32

#gcc
gcc code.c -m32 -o malware.exe 

To generate shellcode use msfvenom:

msfvenom -p windows/exec CMD='calc.exe' -f c

And change this line to yours with shellcode:

7    unsigned char shellcode[] = ""; // shellcode here