httpxweb
What is the purpose of httpx?
Httpx is a fast and multi-purpose HTTP toolkit that allows running multiple probes. It is designed to maintain result reliability with an increased number of threads.
Core Features
- Fast HTTP probing and banner grabbing
- Supports multiple protocols (HTTP/HTTPS/HTTP2)
- Extracts titles, status codes, and server headers
- Technology detection and web application fingerprinting
Common Httpx Commands
1. Basic Probe
Probes a single URL or domain.
bash
httpx -u <target>2. Probe List of Hosts
Probes a list of hosts from a file.
bash
httpx -l hosts.txt3. Extract Title and Status Code
Extracts and displays the page title and HTTP status code.
bash
httpx -l hosts.txt -title -sc4. Technology Detection
Attempts to detect the technologies used by the web application.
bash
httpx -u <target> -tech-detectOutput Examples of Httpx Commands
https://example.com [200] [Example Domain] [nginx]
https://sub.example.com [403] [Forbidden] [Apache/2.4.41]