Skip to content

Instantly share code, notes, and snippets.

import requests,re
from urllib.parse import unquote
import checkdomains
domains = open("Domains-to-test.txt","r")
for domain in domains.readlines():
subdomains = open(domain.rstrip("\n")+"_subdomains.txt","r")
for subdomain in subdomains.readlines():
buckets = []
urls = checkdomains.isdomainlive(subdomain.rstrip("\n"))
if urls: