mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 09:41:06 +08:00
Fix ambiguous variable name
This commit is contained in:
parent
29f56f4802
commit
11acf9c47c
1 changed files with 5 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue