Releases: Nazi404/httpors
Releases · Nazi404/httpors
v1.0 - Initial Release
🚀 httpors
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.
✨ Features
- ⚡ 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
🛠️ Installation
Dependencies:
- GCC / Clang
libcurldevelopment libraryCMake(3.10 or higher)
💻 Linux (Debian/Ubuntu)
sudo apt update
sudo apt install build-essential cmake libcurl4-openssl-dev🏔️ Linux (Arch/Manjaro)
sudo pacman -Syu base-devel cmake curl📱 Termux (Android)
pkg update && pkg upgrade
pkg install clang cmake curl🔧 Build with CMake
git 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.
📖 Usage
./httpors [options]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 |
Examples
./httpors -f subdomains.txt --sc --ip --cl
subfinder -d example.com | ./httpors --sc --ip👤 Author
Anon404 (William Steven)