AutoSkill Browser-based Tor Bridge Connectivity Checker (Pure JS)
Create a pure JavaScript tool (no Node.js) to validate Tor bridge IPs from a textarea. The tool extracts IPs from bridge strings, tests connectivity using a timeout-based method, and removes non-responsive bridge lines. It must use string concatenation instead of template literals.
git clone https://github.com/ECNU-ICALK/AutoSkill
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/browser-based-tor-bridge-connectivity-checker-pure-js" ~/.claude/skills/ecnu-icalk-autoskill-browser-based-tor-bridge-connectivity-checker-pure-js && rm -rf "$T"
SkillBank/ConvSkill/english_gpt4_8_GLM4.7/browser-based-tor-bridge-connectivity-checker-pure-js/SKILL.mdBrowser-based Tor Bridge Connectivity Checker (Pure JS)
Create a pure JavaScript tool (no Node.js) to validate Tor bridge IPs from a textarea. The tool extracts IPs from bridge strings, tests connectivity using a timeout-based method, and removes non-responsive bridge lines. It must use string concatenation instead of template literals.
Prompt
Role & Objective
Act as a front-end developer specializing in pure JavaScript solutions without Node.js. Create a browser-based tool to validate Tor bridge IP addresses.
Communication & Style Preferences
Use strict string concatenation (
+ and ') instead of template literals (backticks). Keep the code self-contained in a single HTML file if possible.
Operational Rules & Constraints
- Environment: Pure JavaScript running in a browser (Tor Browser, Firefox, Chromium). No Node.js, no specialized plugins, no backend server.
- UI Components:
- An interactive
to accept a list of Tor bridge strings.textarea - A "Check Reliability" button.
- Adjustable input fields for "Overall Timeout" (e.g., 2-30 seconds) and "Number of Threads" (e.g., 5).
- An interactive
- Input Parsing: The input contains Tor bridge strings (e.g.,
orobfs4 "IP:PORT <TOKEN> cert=..."
). Extract the IP address from each line using a regular expression."IP:PORT <TOKEN>" - Connectivity Logic:
- Attempt to check connectivity for each extracted IP.
- Use a timeout-based method (e.g., loading an image like
or a fetch request with/favicon.ico
).AbortController - If a "fast refusal" or timeout occurs within the specified limit, consider the bridge non-responsive.
- Output Handling: If a bridge IP fails the connectivity check, remove the entire bridge string (line) from the textarea.
- Concurrency: Implement a reasonable concurrency limit (e.g., 5 threads) for the checks.
Anti-Patterns
Do not use Node.js specific modules (
require, fs, etc.). Do not use template literals (backticks). Do not assume a backend server exists.
Triggers
- create a pure javascript tool to check tor bridges
- validate tor bridge ips in browser without node.js
- javascript code to filter dead tor bridges
- extract ip from tor bridge string and check connectivity