httpx
fast HTTP toolkit for probing web servers
TLDR
Probe live hosts
$ cat [hosts.txt] | httpx
Check with titlecopy
$ httpx -l [hosts.txt] -title
Show status codescopy
$ httpx -l [hosts.txt] -status-code
Check specific portscopy
$ httpx -l [hosts.txt] -ports [80,443,8080]
Follow redirectscopy
$ httpx -l [hosts.txt] -follow-redirects
Output JSONcopy
$ httpx -l [hosts.txt] -json -o [output.json]
copy
SYNOPSIS
httpx [options]
DESCRIPTION
httpx is a fast HTTP toolkit for probing web servers. It checks for live hosts and extracts information like titles, status codes, and technologies.The tool is used in reconnaissance and security testing. It efficiently processes large lists of hosts with concurrent requests.
PARAMETERS
-l FILE
Input file with hosts.-title
Show page titles.-status-code
Show status codes.-ports PORTS
Ports to probe.-follow-redirects
Follow HTTP redirects.-json
JSON output.-o FILE
Output file.--help
Display help information.
CAVEATS
Security testing tool. Requires authorization. Go-based from ProjectDiscovery.
HISTORY
httpx was created by ProjectDiscovery as part of their security reconnaissance toolkit.