โ† All skills
Tencent SkillHub ยท Developer Tools

Tor Browser Automation

Headless browser automation with Tor SOCKS5 proxy support for accessing .onion sites and anonymous browsing. Use when navigating dark web resources, scraping...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Headless browser automation with Tor SOCKS5 proxy support for accessing .onion sites and anonymous browsing. Use when navigating dark web resources, scraping...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/setup-guide.md, scripts/tor-browser.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

Tor Browser Automation

Headless browser automation with Tor SOCKS5 proxy support for accessing .onion sites and anonymous web browsing.

Prerequisites

Tor service running with SOCKS5 proxy on port 9050 Python 3.8+ Playwright with Chromium browser Quick setup: # Install Tor sudo apt install tor && sudo systemctl start tor # Install Python dependencies pip install playwright playwright install chromium

Quick Start

# Check Tor connection tor-browser check-tor # Navigate to a .onion site tor-browser open http://3g2upl4pq6kufc4m.onion # Get page snapshot tor-browser snapshot -i # Click an element tor-browser click @e1 # Take screenshot tor-browser screenshot -o output.png --full

Navigation

# Open URL via Tor tor-browser open <url> [--proxy socks5://host:port] # Check Tor connection status tor-browser check-tor

Page Analysis

# Get full page snapshot tor-browser snapshot # Get interactive elements only (forms, buttons, links) tor-browser snapshot -i # Extract all links tor-browser links # Get page text tor-browser gettext tor-browser gettext --ref @e5

Interaction

# Click element by ref tor-browser click @e1 # Fill input field tor-browser fill @e2 "text to enter" # Wait for page load tor-browser wait 2000

Screenshots

# Take viewport screenshot tor-browser screenshot # Save to file tor-browser screenshot -o capture.png # Full page screenshot tor-browser screenshot --full -o page.png

Python API

from scripts.tor_browser import TorBrowser, Config import asyncio async def main(): # Configure browser config = Config( tor_proxy="socks5://127.0.0.1:9050", headless=True, timeout=30000 ) # Initialize and start browser = TorBrowser(config) await browser.start() # Navigate result = await browser.navigate("http://3g2upl4pq6kufc4m.onion") print(f"Loaded: {result['title']}") # Get snapshot snapshot = await browser.get_snapshot(interactive_only=True) for elem in snapshot['elements']: print(f"{elem['ref']}: {elem['tag']} - {elem['text'][:30]}") # Interact await browser.fill("@e2", "search query") await browser.click("@e3") # Extract data links = await browser.extract_links() for link in links: print(f"{link['text']}: {link['href']}") # Cleanup await browser.close() asyncio.run(main())

Configuration Options

OptionDefaultDescriptiontor_proxysocks5://127.0.0.1:9050Tor SOCKS5 proxy URLheadlesstrueRun without GUItimeout30000Page load timeout (ms)user_agentTor Browser UABrowser user agentviewport1920x1080Browser viewport size

Security & Legal

Intended Use: Security research and threat intelligence Anonymous web scraping of public dark web resources Testing .onion site accessibility Privacy-preserving web automation Important: Only use for legal purposes Respect site Terms of Service Do not use for unauthorized access Comply with local laws regarding dark web access Be aware that some activities may be monitored

Tor Connection Issues

# Check Tor is running sudo systemctl status tor # Test SOCKS5 proxy curl --socks5-hostname 127.0.0.1:9050 https://check.torproject.org/api/ip # View Tor logs sudo journalctl -u tor -f

Common Errors

Connection refused: Ensure Tor service is started Check firewall rules Verify proxy URL Timeout: .onion sites may be slow; increase timeout Try different Tor circuits: restart Tor service CAPTCHA blocking: Use --headed mode to manually solve Some sites block automation

Docker Setup

FROM python:3.11-slim RUN apt-get update && apt-get install -y tor RUN pip install playwright && playwright install chromium COPY . /app WORKDIR /app CMD ["tor-browser", "check-tor"]

References

Setup Guide: references/setup-guide.md Playwright Docs: https://playwright.dev/python/ Tor Project: https://www.torproject.org/

License

MIT - See original licenses for Playwright and Tor Project components.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/setup-guide.md Docs
  • scripts/tor-browser.py Scripts