LinuxCommandLibrary

httpx

fast HTTP toolkit for probing web servers

TLDR

Probe live hosts

$ cat [hosts.txt] | httpx
copy
Check with title
$ httpx -l [hosts.txt] -title
copy
Show status codes
$ httpx -l [hosts.txt] -status-code
copy
Check specific ports
$ httpx -l [hosts.txt] -ports [80,443,8080]
copy
Follow redirects
$ httpx -l [hosts.txt] -follow-redirects
copy
Output JSON
$ 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.

SEE ALSO

nuclei(1), nmap(1), httprobe(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community