Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
puppeteer-debug
Advanced tools
Interrupt puppeteer/playwright for debug.
const puppeteer = require('puppeteer')
const debug = require('puppeteer-debug')
;(async () => {
const browser = await puppeteer.launch({
headless: false
})
const page = await browser.newPage()
await debug({ browser, page, ... }) // pass initial context(must be object) to REPL.
await browser.close()
})()
const playwright = require('playwright')
const debug = require('puppeteer-debug')
;(async () => {
const browser = await playwright.chromium.launch({
headless: false
})
const page = await browser.newPage()
await debug({ browser, page, ... }) // pass initial context(must be object) to REPL.
await browser.close()
})()
In REPL:
> page.goto('https://google.com')
> page.type('input', 'hello, world!')
> page.click('input[type=submit]')
...
> this.page2 = await browser.newPage()
> this.page2.goto('https://google.com') // or page2.goto('https://google.com')
Use CTRL+C
exit REPL.
NOTE: If you define custom variables, please mount to this
, eg: this.xxx = yyy
MIT
2.1.1/2021-12-18
FAQs
Interrupt puppeteer for debug.
The npm package puppeteer-debug receives a total of 296 weekly downloads. As such, puppeteer-debug popularity was classified as not popular.
We found that puppeteer-debug 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.