Kuperberg/embassy-v6
0
๐ Embassy V6 - Remote Browser Proxy
Access any website through a remote Selenium browser with encrypted HTML transmission.
๐ Features
- HTML Rendering: Real HTML (not screenshots!)
- Full Interaction: Clicks, forms, navigation
- Encrypted Transfer: XOR + GZIP + Base64
- CSS Selectors: Accurate element targeting
- Link Detection: Smart navigation
โ๏ธ Configuration Required
Set Secret Token
- Go to Settings โ Repository secrets
- Add secret:
- Name:
EMBASSY_TOKEN - Value: [Your 32-char random token]
Generate Token
PowerShell:
-join ((65..90) + (97..122) + (48..57) | Get-Random -Count 32 | ForEach-Object {[char]$_})๐ป Client Setup
In your local viewer_v6.html:
const EMBASSY_URL = 'https://kuperberg-browser-embassy-v6-clean.hf.space';
const EMBASSY_TOKEN = 'your-32-char-token-here';๐ API Endpoints
GET /- Health checkPOST /navigate- Navigate to URLGET /get_page_html- Get encrypted HTMLPOST /click_element- Click elementPOST /submit_form- Submit form
โ ๏ธ Legal Notice
This tool is for accessing content you're authorized to view. Respect websites' Terms of Service and robots.txt.
