Cleaned up double-negative logic.
Decreased default HTTPClientTimeout to 5 seconds.bug/bundler_fix
parent
6ceb734972
commit
db721dff8e
|
@ -110,7 +110,7 @@ class Metasploit4 < Msf::Exploit::Remote
|
|||
|
||||
register_advanced_options(
|
||||
[
|
||||
OptInt.new('HTTPClientTimeout', [ true, 'HTTP read response timeout (seconds)', 10])
|
||||
OptInt.new('HTTPClientTimeout', [ true, 'HTTP read response timeout (seconds)', 5])
|
||||
], self.class)
|
||||
|
||||
end
|
||||
|
@ -173,12 +173,10 @@ class Metasploit4 < Msf::Exploit::Remote
|
|||
'data' => data
|
||||
})
|
||||
|
||||
if not res.nil?
|
||||
if res.code == 404
|
||||
fail_with(Failure::Unreachable,
|
||||
"#{rhost}:#{rport} - Received a 404 HTTP response - " +
|
||||
"your TARGETURI value is most likely not correct")
|
||||
end
|
||||
if res && res.code == 404
|
||||
fail_with(Failure::Unreachable,
|
||||
"#{rhost}:#{rport} - Received a 404 HTTP response - " +
|
||||
"your TARGETURI value is most likely not correct")
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue