Skip to content

A technique that allows injecting and executing shellcode through fibers

Notifications You must be signed in to change notification settings

K3rnel-Dev/FiberInjection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

💉 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

About

A technique that allows injecting and executing shellcode through fibers

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages