Skip to content

Takes a list of webservers and quickly returns status codes for paths extracted from the URL

License

Notifications You must be signed in to change notification settings

huwwp/substatus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

substatus

substatus is a tool for quickly checking status codes of a common URL pattern in subdomains.

Install

go get -u github.com/huwwp/substatus

Usage

httprobe takes a list of webservers on stdin, extracts the last level subdomain and appends it to the URL (with and without a slash), and then quickly checks response codes.

# cat webservers.txt
https://www.example.com
https://images.example.com
# cat webservers.txt | substatus
https://www.example.com/www [404]
https://www.example.com/www/ [404]
https://images.example.com/images/ [404]
https://images.example.com/images [302]
https://images.example.com [200]
https://www.example.com [200]

Credits

Inspired by tomnomnom's various tools.

About

Takes a list of webservers and quickly returns status codes for paths extracted from the URL

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages