We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e789bb2 commit 434b53fCopy full SHA for 434b53f
lib/generics.py
@@ -43,7 +43,11 @@ def fqdn_scanner(
43
if main_domain.ip == "Dead":
44
res.add_dead(main_domain.name)
45
else:
46
- this_ip = ip_lib.ip(main_domain.ip, config)
+ if not res.check_if_ip_in_res(main_domain.ip):
47
+ this_ip = ip_lib.ip(main_domain.ip, config)
48
+ else:
49
+ this_ip = res.get_ip_in_res(main_domain.ip)
50
+
51
res.add_fqdn(this_ip, main_domain.name)
52
subs = main_domain.get_subs(config.ip_trough_proxy)
53
# remove duplicates
manifest
@@ -1 +1 @@
1
-V3.0.3
+V3.0.4
0 commit comments