tamilbotnet / qping

qping: qping is simple python tool for finding bunch of live subdomains.Generally subdomain enumeration tools (Eg. Sublister) provide a list that consists of both Live and down subdomains. Hence the user time will be wasted to separate the live sub domains alone. So we have introduced this simple qping tool to get the live subdomains. qping read the subdomain list which is provided by subdomain enumeration tool and gives the online subdomain list separately for bug bounty.
19 stars 15 forks source link

status 302 also live #4

Open abuvanth opened 5 years ago

abuvanth commented 5 years ago

save 302 status domain to txt file

RAVIPRAJ commented 4 years ago

you can change following line if req.status_code == 200: to if req.status_code == 200 or 302 :

in python code

that will also add 302 in list if you wish you can also ad 404