Skip to content

Commit

Permalink
fixed parsing for multi level subdomains
Browse files Browse the repository at this point in the history
  • Loading branch information
thewhiteh4t committed Oct 26, 2024
1 parent edf7bba commit 31dc268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion finalrecon.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def save_key(key_string):
domain = ''
domain_suffix = ''
else:
netloc = parsed_url.registered_domain # abc.com
netloc = parsed_url.fqdn # abc.com
domain = parsed_url.domain
domain_suffix = parsed_url.suffix
hostname = netloc
Expand Down

0 comments on commit 31dc268

Please sign in to comment.