Saltar a contenido

Bug bounty Resources

Recon

Magic Checklist

Bug bounty ToDo list by soyelmago
Workflows compilation

Subdomain live checker

# toma como parametro el archivo con las urls
# ejemplo: python3 list_websites.py subfinder_starlink.txt
import sys
import subprocess

with open(sys.argv[1]) as fp:
    for line in fp:
        print("voy a probar:" + line.strip())
        subprocess.call(["curl", "-i", "--connect-timeout", "5", line.strip()])
        sys.stdout.flush()