mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-19 21:03:33 -07:00
Blacklisted 127.0.0.1 as a plausible DNS server
This commit is contained in:
parent
582467428c
commit
b4d2fe273a
1 changed files with 2 additions and 2 deletions
|
@ -918,8 +918,8 @@ def IsICMPRedirectPlausible(IP):
|
||||||
if ip[0] == 'nameserver':
|
if ip[0] == 'nameserver':
|
||||||
dnsip.extend(ip[1:])
|
dnsip.extend(ip[1:])
|
||||||
for x in dnsip:
|
for x in dnsip:
|
||||||
if IsOnTheSameSubnet(x,IP) == False:
|
if x !="127.0.0.1" and IsOnTheSameSubnet(x,IP) == False:
|
||||||
print "[Analyze mode: ICMP]You can ICMP Redirect on this network. This workstation (%s) is not on the same subnet than the DNS server (%s). Use python Icmp-Redirect.py for more details."%(IP, x)
|
print "[Analyze mode: ICMP] You can ICMP Redirect on this network. This workstation (%s) is not on the same subnet than the DNS server (%s). Use python Icmp-Redirect.py for more details."%(IP, x)
|
||||||
else:
|
else:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue