bright-data-best-practices
Provides best practices for integrating Bright Data APIs for web scraping, browser automation, and structured data extraction.
Install this skill
Security score
The bright-data-best-practices skill was audited on May 16, 2026 and we found 27 security issues across 3 threat categories, including 2 high-severity. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 273 | - Playwright/Puppeteer: `wss://${AUTH}@brd.superproxy.io:9222` |
Template literal with variable interpolation in command context
| 274 | - Selenium: `https://${AUTH}@brd.superproxy.io:9515` |
Template literal with variable interpolation in command context
| 280 | const browser = await chromium.connectOverCDP(`wss://${AUTH}@brd.superproxy.io:9222`); |
Access to .env file
| 279 | const AUTH = process.env.BROWSER_AUTH; |
External URL reference
| 43 | **Endpoint:** `POST https://api.brightdata.com/request` |
External URL reference
| 49 | "https://api.brightdata.com/request", |
External URL reference
| 53 | "url": "https://example.com/product/123", |
External URL reference
| 65 | | `url` | string | Target URL with `http://` or `https://` (required) | |
External URL reference
| 77 | "https://api.brightdata.com/request", |
External URL reference
| 102 | **Endpoint:** `POST https://api.brightdata.com/request` (same as Web Unlocker) |
External URL reference
| 106 | "https://api.brightdata.com/request", |
External URL reference
| 110 | "url": "https://www.google.com/search?q=python+web+scraping&brd_json=1&gl=us&hl=en", |
External URL reference
| 165 | "https://api.brightdata.com/request", |
External URL reference
| 168 | json={"zone": SERP_ZONE, "url": "https://www.google.com/search?q=test&brd_json=1", "format": "raw"} |
External URL reference
| 174 | "https://api.brightdata.com/serp/get_result", |
External URL reference
| 190 | **Sync Endpoint:** `POST https://api.brightdata.com/datasets/v3/scrape` |
External URL reference
| 191 | **Async Endpoint:** `POST https://api.brightdata.com/datasets/v3/trigger` |
External URL reference
| 196 | "https://api.brightdata.com/datasets/v3/scrape", |
External URL reference
| 199 | json={"input": [{"url": "https://www.amazon.com/dp/B09X7M8TBQ"}]} |
External URL reference
| 222 | { "url": "https://www.amazon.com/dp/B09X7M8TBQ" }, |
External URL reference
| 223 | { "url": "https://www.amazon.com/dp/B0B7CTCPKN" } |
External URL reference
| 235 | "https://api.brightdata.com/datasets/v3/trigger", |
External URL reference
| 244 | f"https://api.brightdata.com/datasets/v3/progress/{snapshot_id}", |
External URL reference
| 254 | f"https://api.brightdata.com/datasets/v3/snapshot/{snapshot_id}", |
External URL reference
| 274 | - Selenium: `https://${AUTH}@brd.superproxy.io:9515` |
External URL reference
| 284 | await page.goto("https://example.com", { waitUntil: "domcontentloaded" }); |
External URL reference
| 296 | await page.goto("https://example.com", wait_until="domcontentloaded") |