loading
loading
Discovery
HTTP status codes for a URL list. Nothing else.
overview
hakcheckurl reads a file of URLs and reports the HTTP status each returns, one line per URL. Concurrency is -t (default 8). Output is flat enough to grep by code.
Use it after a crawler or wordlist pass when you only need live, redirecting, forbidden, or gone. It does not return titles or tech fingerprints.
Trickest exposes hakcheckurl as a managed Discovery node with a URLs file input and file/folder outputs. Hand survivors to httpx when you need titles and technology next.
use cases
Check a large set of URLs for their response codes so a downstream stage works only from the URLs that answer.
Scan crawler or brute-force output for 404 and 403 responses to surface dead links and access-controlled paths worth a closer look.
Raise the thread count with -t so a large URL list resolves in parallel instead of one request at a time.
Run hakcheckurl after content discovery to cut the set down before httpx classifies titles and technology on what remains.
reference
| Name | Type | Flag | Description |
|---|---|---|---|
| urls-file | FILE | · | File of target URLs to check. |
| threads | STRING | -t | Number of threads to use (default 8). |
Showing key inputs. hakcheckurl exposes 2 inputs in total.
example
# check a list of URLs and print each status code, 16 threadscat urls.txt | hakcheckurl -t 16200 https://example.com/301 https://example.com/blog302 https://example.com/login403 https://example.com/admin404 https://example.com/old-report500 https://example.com/api/v1/export200 https://example.com/docs401 https://example.com/dashboardguidance
Use for a minimal pass that returns only HTTP status codes for a URL list. When you need titles, tech detection, and richer probe signal, reach for httpx. hakcheckurl is the lighter, single-purpose option.
Full HTTP prober with status, title, tech, and more. hakcheckurl returns only response codes.
Minimal liveness check for hosts. Close sibling for a quick alive-or-not pass.
Focuses on 404 and soft-404 responses. Overlaps hakcheckurl dead-link filtering.
faq
related
Extract URLs and endpoints from Android APK files.
Web path scanner.
Crawl pages, harvest potential parameters, write a custom wordlist.
Recursive content discovery with smart defaults and rich response filters.
Maintained gau fork for passive archive URL collection.
Extract JavaScript file URLs from a page or URL list.
A URL list feeds hakcheckurl, which checks each one's HTTP status and writes the live URLs as a queryable output.
Facts on this page come from the live Trickest tool library.