Untitled
Anonymous
plain_text
04/28/2023 4:51 PM
408 B
17
Indexable
subdomain_list = []
# loop through the list
for item in res:
# extract the domain from the list item
domain = item[2]
# split the domain into subdomains
# print all the subdomains except the top-level domain
subdomain_list.append(domain.replace('*.',''))
len(set(subdomain_list))Editor is loading...