Fix ambiguous variable name

This commit is contained in:
David Mougeolle 2020-01-07 22:24:34 +01:00
parent 29f56f4802
commit 11acf9c47c

View file

@ -489,11 +489,11 @@ async def handler(lst):
analyzed_ranges.append(ip_range)
else:
continue
for entry in res:
if word in entry:
dnsrev.append(entry)
if entry not in full:
full.append(entry)
for cname in res:
if word in cname:
dnsrev.append(cname)
if cname not in full:
full.append(cname)
print('[*] Hosts found after reverse lookup (in target domain):')
print('--------------------------------------------------------')
for xh in dnsrev: