File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
"-h" => [ false , "Help menu." ] ,
23
23
"-p" => [ true , "The port on the remote host where Metasploit is listening (default: 4444)." ] ,
24
24
"-m" => [ false , "Start exploit/multi/handler for return connection." ] ,
25
- "-pt " => [ true , "Specify reverse connection Meterpreter payload. Default: windows/meterpreter/reverse_tcp" ] ,
26
- "-mr " => [ true , "Provide multiple IP addresses for connections separated by comma." ] ,
27
- "-mp " => [ true , "Provide multiple PID for connections separated by comma one per IP." ]
25
+ "-P " => [ true , "Specify reverse connection Meterpreter payload. Default: windows/meterpreter/reverse_tcp" ] ,
26
+ "-I " => [ true , "Provide multiple IP addresses for connections separated by comma." ] ,
27
+ "-d " => [ true , "Provide multiple PID for connections separated by comma one per IP." ]
28
28
)
29
29
meter_type = client . platform
30
30
@@ -112,11 +112,11 @@ def start_proc()
112
112
lport = val . to_i
113
113
when "-m"
114
114
start_handler = true
115
- when "-pt "
115
+ when "-P "
116
116
payload_type = val
117
- when "-mr "
117
+ when "-I "
118
118
multi_ip = val . split ( "," )
119
- when "-mp "
119
+ when "-d "
120
120
multi_pid = val . split ( "," )
121
121
end
122
122
}
You can’t perform that action at this time.
0 commit comments