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.
Errsole captures all errors raised in your Node.js app and the HTTP requests that caused the errors. You can view all your app errors and the root cause of each error in one place.
Errsole creates a clone of your Node.js app in the server and provides a debugger interface to the app clone. You can replay the captured errors in the app clone and debug the server code in real-time. Your users are not impacted while you debug the server code.
Add developers to your app team. Then your team members can view, debug, and fix errors raised in your Node.js app.
npm install
command:npm install errsole
/**
* Put the Errsole code snippet at the top of your app's main file
*/
const errsole = require('errsole')
errsole.initialize({
framework: 'express',
token: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
})
/**
* Your app code starts here
*/
const express = require('express')
const app = express()
app.get('/', function (req, res) {
res.send('Hello World')
})
app.listen(3000)
If you run into any issues, please email us at support@errsole.com.
For bug reports, please open an issue on GitHub.
FAQs
Collect, Store, and Visualize Logs with a Single Module
We found that errsole demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.