Make the timeout for the calling payload request lower

bug/bundler_fix
jvazquez-r7 2014-12-12 12:41:06 -06:00
parent 98dca6161c
commit aaed7fe957
1 changed files with 4 additions and 3 deletions

View File

@ -70,8 +70,9 @@ class Metasploit3 < Msf::Exploit::Remote
print_status("#{peer} - Calling uploaded file #{file_path}")
send_request_cgi(
'uri' => file_path,
'method' => 'GET'
)
{
'uri' => file_path,
'method' => 'GET'
}, 5)
end
end