mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
Don't allow 127.0.0.1 as SRVHOST
This commit is contained in:
parent
7d2fa9ee94
commit
40bf44bd05
@ -88,8 +88,8 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||
end
|
||||
|
||||
def exploit
|
||||
if datastore['SRVHOST'] == '0.0.0.0'
|
||||
fail_with(Failure::BadConfig, 'Don\'t use 0.0.0.0 as SRVHOST, use an address on the local machine reachable by the target')
|
||||
if ['0.0.0.0', '127.0.0.1'].include?(datastore['SRVHOST'])
|
||||
fail_with(Failure::BadConfig, 'Bad SRVHOST, use an address on the local machine reachable by the target')
|
||||
end
|
||||
|
||||
if check != Exploit::CheckCode::Detected
|
||||
|
Loading…
Reference in New Issue
Block a user