httpors is a lightweight, multi-threaded HTTP probing tool built with libcurl. It quickly fetches HTTP response info from domains or URLs, such as status codes, IP addresses, content length, content type, and redirect locations.
- β‘ Multi-threaded HTTP probing
- π Read domains from a file or
stdin - π’ Display HTTP status codes (color-coded)
- π Show resolved IP addresses
- π Display content length
- ποΈ Show content type
- π Show redirect location if present
- πΎ Save output to a file
- π₯οΈ Simple and clean CLI interface
Dependencies:
- GCC / Clang
libcurldevelopment libraryCMake(3.10 or higher)
sudo apt update
sudo apt install build-essential cmake libcurl4-openssl-devsudo pacman -Syu base-devel cmake curlpkg update && pkg upgrade
pkg install clang cmake curlgit clone https://github.com/Anon-404/httpors.git
cd httpors
mkdir build
cd build
cmake ..
makeThe compiled binary httpors will be available inside the build/ directory.
./httpors [options]| Flag | Description |
|---|---|
-f, --file <file> |
π Read domains from a file |
-sc, --status-code |
π’ Show HTTP status code |
-ip |
π Show resolved IP address |
-cl, --content-length |
π Show response content length |
-ct, --content-type |
ποΈ Show response content type |
--location |
π Show redirect location (if any) |
-o, --output <file> |
πΎ Save output to a file |
-h, --help |
β Show this help menu |
./httpors -f subdomains.txt -sc --ip -cl
subfinder -d example.com | ./httpors -sc --ipAnon404 (William Steven)