web-scraping — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited web-scraping (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Extract structured data from websites, handling both static HTML and JavaScript-rendered content (React, Next.js, Vue, etc.).
Use when: Site serves complete HTML without JavaScript rendering.
curl -sL 'https://example.com' | grep -oP 'pattern'
# or with jq for JSON APIs
curl -s 'https://api.example.com/data' | jq '.items[]'Pros: Fast, lightweight, no dependencies Cons: Fails on JS-rendered content
Use when: Content is rendered client-side (React, Next.js, Vue, Angular).
Node.js + Puppeteer (recommended for WSL2/containers):
const puppeteer = require('puppeteer');
const browser = await puppeteer.launch({
headless: true,
args: ['--no-sandbox', '--disable-setuid-sandbox'] // Required in WSL2/containers
});
const page = await browser.newPage();
await page.goto('https://example.com', {
waitUntil: 'networkidle2',
timeout: 60000
});
// Wait for dynamic content
await new Promise(resolve => setTimeout(resolve, 3000));
// Extract text
const content = await page.evaluate(() => document.body.innerText);
// Extract structured data
const data = await page.evaluate(() => {
return Array.from(document.querySelectorAll('.item')).map(el => ({
title: el.querySelector('.title')?.innerText,
value: el.querySelector('.value')?.innerText
}));
});
await browser.close();Pros: Handles all JS rendering, can interact with page Cons: Slower, heavier resource usage
Use when: Site loads data via XHR/fetch calls.
Pros: Fastest, most reliable Cons: Requires manual inspection, may need auth tokens
Alternative: Reverse-engineer from minified JS (when browser access blocked):
Method A: Direct curl (if no Cloudflare)
# Download main JS bundle
curl -s "https://example.com/assets/main-[hash].js" > /tmp/bundle.js
# Search for API patterns
grep -oP '"/[a-z_/-]{3,}"' /tmp/bundle.js | sort -u
strings /tmp/bundle.js | grep -i 'keyword' | head -20Method B: TinyFish browser automation (if Cloudflare protected)
When curl fails due to Cloudflare Turnstile, use TinyFish to bypass protection and download JS via Chrome DevTools Protocol:
# 1. Create TinyFish browser session (bypasses Cloudflare)
# 2. Wait for challenge completion
# 3. Connect to browser via CDP WebSocket
# 4. Use Runtime.evaluate to fetch JS files
# 5. Extract API endpoints from minified codeSee references/tinyfish-js-reverse-engineering.md for full workflow (tested on rpow2swap.com May 2026).
Trial-error common paths with size check:
for path in /api/listings /api/orders /listings /tokens /api/stats; do
echo "Testing: https://example.com$path"
timeout 3 curl -s -m 3 -o /dev/null -w "HTTP %{http_code} | Size: %{size_download} bytes\\n" \
"https://example.com$path" 2>&1 || echo "Timeout/Error"
done
# Look for large responses (>10KB = likely data endpoint, <2KB = likely SPA HTML)Success indicators:
See references/spa-api-discovery.md for full technique (tested on rpow2swap.com May 2026).
Success case (rpow2swap.com, May 2026):
# 1. Try common API paths with timeout
for path in /api/listings /api/tokens /listings /tokens /api/orderbook; do
timeout 3 curl -s -m 3 -o /dev/null -w "HTTP %{http_code} | Size: %{size_download}\\n" \
"https://example.com$path"
done
# Result: /api/listings returned 65KB (200 OK) — found it!
# 2. Fetch and inspect data
curl -s "https://example.com/api/listings" | head -c 2000
# Returns JSON array with full listing data
# 3. Build monitoring bot
# State-based change detection: track seen IDs, alert on new entriesKey insight: Many SPAs use predictable REST paths (/api/<resource>). Trial-error with timeout is faster than reverse-engineering minified JS.
Use when: Scraping Twitter/X content (tweets, profiles, media).
Primary: vxtwitter API (no auth, works from terminal)
# Get tweet data
curl -s "https://api.vxtwitter.com/Twitter/status/{tweet_id}" | jq -r '.tweet | {text, author, likes, retweets, replies, media}'
# Get account info
curl -s "https://api.vxtwitter.com/{handle}" | jq -r '.user | {name, description, followers, website}'
# Extract quoted tweet (QRT)
curl -s "https://api.vxtwitter.com/Twitter/status/{tweet_id}" | jq -r '.qrt | {text, author, likes}'Fallback: fxtwitter API (same structure)
curl -s "https://api.fxtwitter.com/{handle}/status/{tweet_id}"Pros: No auth, fast, structured JSON, includes media URLs Cons: Rate limited, may lag behind real-time data
Note: Twitter's official API requires auth and has strict rate limits. Use vxtwitter/fxtwitter for read-only access.
Use when: Site has Cloudflare Turnstile, bot detection, or anti-scraping measures.
Browserbase (recommended, tested May 2026):
import requests
# Create session
response = requests.post(
"https://www.browserbase.com/v1/sessions",
headers={"X-BB-API-Key": API_KEY, "Content-Type": "application/json"},
json={"projectId": PROJECT_ID}
)
session = response.json()
debug_url = f"https://www.browserbase.com/v1/sessions/{session['id']}/debug"See references/browserbase-api.md for full API reference.
Browser Use Cloud (alternative, had 404 issues May 2026):
response = requests.post(
"https://api.browser-use.com/api/v1/run-task",
headers={"Authorization": f"Bearer {API_KEY}"},
json={"task": "Go to protected-site.com and extract data"}
)See references/browser-use-cloud-api.md for troubleshooting.
Pros: Bypasses Cloudflare, residential proxies, no local resources Cons: Paid service, requires API key, SDK needed for automation
Chrome sandbox issues are common in WSL2 and Docker. Always use:
args: ['--no-sandbox', '--disable-setuid-sandbox']Python venv issues: WSL2 Ubuntu may lack python3-venv. Use Node.js approach instead or install:
sudo apt install python3.12-venv--no-sandbox flag or cloud browser services./api/v1/, docs say /v3/). If getting 404 errors, see references/browser-use-cloud-api.md for troubleshooting.console.log(JSON.stringify(data, null, 2)) for structured outputSee references/nextjs-ssr-scraping.md for full example from MegaETH KPIs extraction.
references/spa-api-discovery.md — API endpoint discovery from minified JS (rpow2swap.com case study)references/tinyfish-js-reverse-engineering.md — TinyFish browser automation + CDP for JS download + minified code analysis (Cloudflare bypass, tested May 2026)references/cloudflare-turnstile-bypass.md — escalation ladder for Cloudflare Turnstile v2 (curl → TinyFish → Puppeteer stealth → Browserbase → manual). Key lesson: stealth plugins fail against Turnstile, skip to Browserbase or manual.references/race-condition-order-matching.md — debugging "order reappeared" bugs in trading/marketplace systems (database races, cache invalidation, frontend state)references/security-audit-pattern.md — structured web app security audits for responsible disclosurereferences/browserbase-api.md — Browserbase cloud browser API referencereferences/browser-use-cloud-api.md — Browser Use Cloud troubleshooting~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.