
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
@nextnextools/xrom
Advanced tools
Run [dockerized Chromium or Firefox in headless remote debugging mode](https://github.com/nextools/images) and return `browserWSEndpoint` needed for `puppeteer.connect()`.
Run dockerized Chromium or Firefox in headless remote debugging mode and return browserWSEndpoint
needed for puppeteer.connect()
.
$ yarn add xrom
type TRunBrowserOptions = {
browser: 'chromium' | 'firefox',
version: string,
dockerUrlRoot?: string
port?: number,
fontsDir?: string,
mountVolumes?: {
from: string,
to: string,
}[],
cpus?: number,
cpusetCpus?: number[]
}
type TRunBrowserResult = {
browserWSEndpoint: string,
closeBrowser: () => Promise<void>,
}
runBrowser(options: TRunBrowserOptions) => Promise<TRunBrowserResult>
import { runBrowser } from 'xrom'
import puppeteer from 'puppeteer-core'
const { browserWSEndpoint } = await runBrowser({ browser: 'chromium' })
const browser = await puppeteer.connect({ browserWSEndpoint })
You can override the root URL to use some other set of docker images of Chromium and/or Firefox.
Make sure the final link, which is evaluated as ${dockerUrlRoot}/${browser}:${version}
, points to a docker image that is valid and public.
const { browserWSEndpoint, closeBrowser } = await runBrowser({
dockerUrlRoot: 'ghcr.io/shenato/docker-browser',
browser: 'chromium',
version: opts.chromiumVersion,
fontsDir: opts.fontsDir,
})
FAQs
Run [dockerized Chromium or Firefox in headless remote debugging mode](https://github.com/nextools/images) and return `browserWSEndpoint` needed for `puppeteer.connect()`.
The npm package @nextnextools/xrom receives a total of 51,390 weekly downloads. As such, @nextnextools/xrom popularity was classified as popular.
We found that @nextnextools/xrom demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.