Search the Tor dark web, fetch .onion hidden service pages, rotate Tor identity, and run structured OSINT investigations. Use when user asks to search dark web, investigate .onion sites, find if data appeared on dark web, conduct Tor-based OSINT, look up dark web leaks, fetch any .onion URL, check for leaked credentials, or investigate ransomware groups.
Resources
22Install
npx skillscat add christinminor459/onionclaw Install via the SkillsCat registry.
OnionClaw — Tor / Dark Web Access
by JacobJandon · MIT License · github.com/JacobJandon/OnionClaw
OnionClaw routes all requests through the Tor network. It searches 12 verified-live dark web search engines simultaneously, fetches .onion hidden service pages, rotates Tor circuits, and produces structured OSINT reports using the Robin investigation pipeline.
Setup (run once after install)
Install Python dependencies:
pip3 install requests[socks] beautifulsoup4 python-dotenv stemRun the interactive first-run wizard (sets up .env and torrc in one step):
python3 {baseDir}/setup.pyOr set up manually:
cp {baseDir}/.env.example {baseDir}/.env
# Edit {baseDir}/.env — add LLM_PROVIDER + API key (optional; search and fetch work without one)Start Tor (required before any command):
# Linux: sudo apt install tor && sudo systemctl start tor
# macOS: brew install tor && brew services start tor
# Custom: tor -f /tmp/tor_data/torrc & (setup.py creates this)Enable circuit rotation (ControlPort) — required for renew.py:
Add to /etc/tor/torrc:
ControlPort 9051
CookieAuthentication 1
Then restart Tor. setup.py does this automatically.Commands
Check Tor is running
Always run this first before any search or fetch.
python3 {baseDir}/check_tor.pyOutput: exit IP address and tor_active: true/false. If tor_active is false, tell the user to start Tor and stop.
Rotate Tor identity
Get a fresh exit node and new identity. Use between investigation sessions or when you need a new IP.
python3 {baseDir}/renew.pyOutput: success: true/false. If false, the user needs to ensure ControlPort 9051 is enabled and TOR_DATA_DIR is set in .env.
Search the dark web
Search all 12 verified-live dark web engines simultaneously. Returns deduplicated {title, url, engine} results.
Basic search:
python3 {baseDir}/search.py --query "SEARCH_TERM"With result limit:
python3 {baseDir}/search.py --query "SEARCH_TERM" --max 30Specific engines only:
python3 {baseDir}/search.py --query "SEARCH_TERM" --engines Ahmia Tor66 Ahmia-clearnetAvailable engines: Ahmia, OnionLand, Amnesia, Torland, Excavator, Onionway, Tor66, OSS, Torgol, TheDeepSearches, DuckDuckGo-Tor, Ahmia-clearnet
Tip: Use short keyword queries (≤5 words). Dark web indexes respond better to focused keywords than natural-language questions.
Fetch a .onion page
Fetch the full content of any .onion URL or clearnet URL through Tor.
python3 {baseDir}/fetch.py --url "http://SOME.onion/path"Output: title, text (first 3000 chars), link list, HTTP status. If status is 0 or error is set, the hidden service is unreachable.
Check which search engines are alive
Ping all 12 engines via Tor and get latency + status for each.
python3 {baseDir}/check_engines.pyOutput: per-engine up/down status, latency in ms. Use this before a large search run to pass only alive engines to --engines.
OSINT analysis
Analyse scraped dark web content with an LLM. Produces a structured sectioned report.
From a string:
python3 {baseDir}/ask.py --query "INVESTIGATION_QUERY" --mode MODE --content "RAW_TEXT"From a file:
python3 {baseDir}/ask.py --query "INVESTIGATION_QUERY" --mode MODE --file /path/to/content.txtFrom stdin (pipe):
echo "CONTENT" | python3 {baseDir}/ask.py --query "QUERY" --mode MODEAnalysis modes:
| Mode | Use for |
|---|---|
threat_intel |
General OSINT (default) — artifacts, insights, next steps |
ransomware |
Malware/C2/MITRE TTPs, victim orgs, indicators |
personal_identity |
PII/breach exposure, severity, protective actions |
corporate |
Leaked credentials/code/docs, IR recommendations |
With custom focus:
python3 {baseDir}/ask.py --query "QUERY" --mode threat_intel --custom "Focus on cryptocurrency wallet addresses"Full OSINT pipeline (one command)
Runs the complete Robin pipeline: refine query → check live engines → search → filter best results → batch scrape → OSINT analysis.
python3 {baseDir}/pipeline.py --query "INVESTIGATION_QUERY" --mode MODEWith more results:
python3 {baseDir}/pipeline.py --query "INVESTIGATION_QUERY" --mode ransomware --max 50 --scrape 10Without an LLM key (raw results only):
python3 {baseDir}/pipeline.py --query "INVESTIGATION_QUERY" --no-llmOptions:
--query— investigation topic (natural language OK — it gets refined automatically)--mode—threat_intel(default),ransomware,personal_identity,corporate--max— max raw results from search (default 30)--scrape— how many pages to batch-fetch (default 8)--custom— custom LLM instructions appended to the mode prompt--out FILE— write final report to a file--no-llm— skip refine/filter/ask steps; dump raw scraped content (no API key needed)
Typical investigation flows
"Search the dark web for X"
python3 {baseDir}/check_tor.py— verify connectedpython3 {baseDir}/search.py --query "X"— search all enginespython3 {baseDir}/fetch.py --url "URL"on 2-3 top resultspython3 {baseDir}/ask.py --mode threat_intel --query "X" --content "..."on combined text
"Has company.com been leaked on the dark web"
python3 {baseDir}/check_tor.pypython3 {baseDir}/pipeline.py --query "company.com data leak credentials" --mode corporate- Present the structured report to the user
"Investigate ransomware group X"
python3 {baseDir}/check_tor.pypython3 {baseDir}/pipeline.py --query "GROUP_NAME ransomware" --mode ransomware
"Fetch this .onion URL"
python3 {baseDir}/check_tor.pypython3 {baseDir}/fetch.py --url "URL"- Show the user the title + text content
Important notes
- All traffic routes through Tor — tell the user this when relevant.
- .onion sites are frequently offline — if fetch returns
status: 0, the site is temporarily down. - Dark web search indexes go down often — run
check_engines.pyfirst and filter by alive engines. - LLM tools (
ask) require an API key in{baseDir}/.env. Search and fetch work without any key. - Use responsibly and lawfully — OSINT, security research, and threat intelligence only.
Maintenance
sync_sicry.py — update bundled sicry.py from upstream
sync_sicry.py fetches the latest (or a tagged) sicry.py from the upstream
SICRY™ GitHub repo and overwrites the
bundled copy inside OnionClaw. Run it after a new SICRY™ release is published.
Checking for OnionClaw updates
OnionClaw will automatically notify you whenever a newer release is
available — a one-line message is printed at startup of pipeline.py if an
update exists. You can also check on demand:
# Quick CLI update check (prints latest version, release URL, upgrade command):
python3 {baseDir}/pipeline.py --check-update
# Programmatic check from any Python environment:
import sicry
r = sicry.check_update()
if not r["up_to_date"]:
print(f"Update: {r['current']} → {r['latest']} {r['url']}")Upgrade after a new release:
git -C {baseDir} pull # update the whole repo
python3 {baseDir}/sync_sicry.py # re-sync sicry.py from SICRY™The check is clearnet-only (not through Tor), uses a 4-second timeout, and
is always silent on network errors.
# Pull latest main branch:
python3 {baseDir}/sync_sicry.py
# Pull a specific release tag:
python3 {baseDir}/sync_sicry.py --tag v1.2.0
# Preview without writing (dry run):
python3 {baseDir}/sync_sicry.py --dry-runDevelopment workflow (when editing sicry.py locally):
- Edit
OnionClaw/sicry.py. - Copy to parent repo:
cp OnionClaw/sicry.py Sicry/sicry.py - Commit + tag both repos, then push.
- Once the tag is live on GitHub, users can run
sync_sicry.py --tag vX.Y.Z
to update their OnionClaw copy.
Flags:
--tag REF— git ref or tag to fetch (default:main)--dry-run— show what would happen without writing anything