From aaed7fe957de0f41847d647dacc4cf2df50fe5ee Mon Sep 17 00:00:00 2001 From: jvazquez-r7 Date: Fri, 12 Dec 2014 12:41:06 -0600 Subject: [PATCH] Make the timeout for the calling payload request lower --- modules/exploits/unix/webapp/wp_downloadmanager_upload.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/exploits/unix/webapp/wp_downloadmanager_upload.rb b/modules/exploits/unix/webapp/wp_downloadmanager_upload.rb index 5c6a9a55ca..13dea3737f 100644 --- a/modules/exploits/unix/webapp/wp_downloadmanager_upload.rb +++ b/modules/exploits/unix/webapp/wp_downloadmanager_upload.rb @@ -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