Skip to main content

brightdata-core-workflow-a

Enables structured data scraping from JavaScript-rendered pages using Bright Data's Scraping Browser with Playwright or Puppeteer.

Install this skill

or
65/100

Security score

The brightdata-core-workflow-a skill was audited on May 19, 2026 and we found 11 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 55

Template literal with variable interpolation in command context

SourceSKILL.md
55const AUTH = `brd-customer-${BRIGHTDATA_CUSTOMER_ID}-zone-${BRIGHTDATA_ZONE}:${BRIGHTDATA_ZONE_PASSWORD}`;
medium line 56

Template literal with variable interpolation in command context

SourceSKILL.md
56const BROWSER_WS = `wss://${AUTH}@brd.superproxy.io:9222`;
medium line 104

Template literal with variable interpolation in command context

SourceSKILL.md
104const AUTH = `brd-customer-${process.env.BRIGHTDATA_CUSTOMER_ID}-zone-${process.env.BRIGHTDATA_ZONE}:${process.env.BRIGHTDATA_ZONE_PASSWORD}`;
medium line 107

Template literal with variable interpolation in command context

SourceSKILL.md
107const browser = await chromium.connectOverCDP(`wss://${AUTH}@brd.superproxy.io:9222`);
medium line 155

Template literal with variable interpolation in command context

SourceSKILL.md
155const AUTH = `brd-customer-${process.env.BRIGHTDATA_CUSTOMER_ID}-zone-${process.env.BRIGHTDATA_ZONE}:${process.env.BRIGHTDATA_ZONE_PASSWORD}`;
medium line 159

Template literal with variable interpolation in command context

SourceSKILL.md
159browserWSEndpoint: `wss://${AUTH}@brd.superproxy.io:9222`,
low line 53

Access to .env file

SourceSKILL.md
53const { BRIGHTDATA_CUSTOMER_ID, BRIGHTDATA_ZONE, BRIGHTDATA_ZONE_PASSWORD } = process.env;
low line 104

Access to .env file

SourceSKILL.md
104const AUTH = `brd-customer-${process.env.BRIGHTDATA_CUSTOMER_ID}-zone-${process.env.BRIGHTDATA_ZONE}:${process.env.BRIGHTDATA_ZONE_PASSWORD}`;
low line 155

Access to .env file

SourceSKILL.md
155const AUTH = `brd-customer-${process.env.BRIGHTDATA_CUSTOMER_ID}-zone-${process.env.BRIGHTDATA_ZONE}:${process.env.BRIGHTDATA_ZONE_PASSWORD}`;
low line 87

External URL reference

SourceSKILL.md
87scrapWithBrowser('https://example.com').catch(console.error);
low line 188

External URL reference

SourceSKILL.md
188- [Playwright CDP Docs](https://playwright.dev/docs/api/class-browsertype#browser-type-connect-over-cdp)
Scanned on May 19, 2026
View Security Dashboard
Installation guide →