• Tools
  • Features
  • Resources

Introduction

Getting Started

Platform Features

Scanning
AI Analysis
Code Scanning (SAST)
Reports
Dashboard & Analytics

Developer Reference

REST API
CLI Reference
CI/CD Integration
Tool Tactics
SubfinderNmapKatanaNucleiHttpxGitleaksWPScan

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.txt

3. Extract Title and Status Code

Extracts and displays the page title and HTTP status code.

bash
httpx -l hosts.txt -title -sc

4. Technology Detection

Attempts to detect the technologies used by the web application.

bash
httpx -u <target> -tech-detect

Output Examples of Httpx Commands

https://example.com [200] [Example Domain] [nginx] https://sub.example.com [403] [Forbidden] [Apache/2.4.41]
Previous
Nuclei
Next
Gitleaks
⌘K

On this page

PurposeCore FeaturesCommon CommandsOutput Examples