Httprobe

Use this skill when the user wants to probe a list of domains for working HTTP/HTTPS servers — asset discovery, subdomain validation, or security recon from stdin.

javimosch 8a0990b 1.1 KB Updated

File contents

httprobe Plugin

Takes line-delimited domains on stdin and outputs only those with live HTTP or HTTPS endpoints. Built for pipeline workflows with other recon tools (subfinder, amass, etc.).

Installation

go install github.com/tomnomnom/httprobe@latest

Basic Usage

# Probe domains from a file
cat domains.txt | httprobe

# Prefer HTTPS only (skip HTTP when HTTPS works)
cat domains.txt | httprobe -prefer-https

# Tune concurrency and timeout
cat domains.txt | httprobe -c 50 -t 5000

Pipeline Examples

# Subdomains → live hosts
subfinder -d example.com -silent | httprobe

# Save working URLs
cat targets.txt | httprobe > live.txt

Usage Examples

  • "Which of these subdomains have a web server?"
  • "Probe this domain list for HTTP and HTTPS"
  • "Filter live hosts from recon output"

SuperCLI

echo "example.com" | sc httprobe domain probe
sc plugins learn httprobe

javimosch/supercli/tree/main/plugins/httprobe/skills/quickstart commit 8a0990b150

Frequently asked questions

npx skillmds@latest add javimosch/httprobe