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 is an error logger and remote debugger for Node.js apps. With Errsole, you can view the root cause of every error, reproduce any error with just a click, and debug the server code without affecting the live app and its users.
Errsole captures and saves all errors that occur in your app across all servers and environments.
In addition to capturing errors, Errsole also captures the corresponding HTTP requests that caused the errors.
Errsole starts a sandbox app on your server, which is a clone of your live app. Within this sandbox app, you can reproduce errors and inspect every line of the code without affecting the live app.
With a feature-rich debugger directly connected to a sandbox app, you can set breakpoints, reproduce errors, inspect variables, and verify the fixes - all without affecting your live app.
Errsole is a Node.js module. You can install this module using the npm install command:
npm install errsole
You must obtain a unique token to configure the Errsole module in your app.
Follow the steps below to generate a unique token:
/**
* Insert this Errsole code snippet as the first line of your app's main file
*/
const errsole = require('errsole');
errsole.initialize({
framework: 'express',
token: '[Your Errsole Token]'
});
// End of Errsole code snippet
/**
* Your app code starts here
*/
const express = require('express');
const app = express();
app.get('/', function (req, res) {
res.send('Hello World');
});
app.listen(3000);
Experience Errsole firsthand by troubleshooting errors in our demo app:
For a complete product documentation, please visit our documentation page:
https://www.errsole.com/documentation/
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
The npm package errsole receives a total of 339 weekly downloads. As such, errsole popularity was classified as not popular.
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.