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.
jaeger-tracer
Advanced tools
client library for jaegar to ease out the instrumenting in express and any other backend application based on express in nodejs
This is a module for jaeger instrumentation to allow your node backend with just four lines of code and the require statements included to be able to send the incoming and outgoing requests and responses data to the jaeger backend.
npm install jaeger-tracer
All you need to do is include the following middleware in your app with the following way
let { jaegarTracerMiddleware } = require('jaeger-tracer');
let http = require('http');
let https = require('https');
// some middlewares
// body parser middleware
// jaeger tracer middleware here
app.use(jaegarTracerMiddleware({ http, https }, '<app name here>', {
reporter: {
// host name of your
agentHost: 'jaegar'
}
}
));
This is the simplest usage of package you can customize the collector host and many other data through the configs which we will be describing later.
Inside the package we just log the incoming requests and their responses from this backend the middleware takes the http or https to be able to monkey patch the http.request or https.request functions and put the tracer headers in any outgoing requests to third party backends. Also the it extracts the headers from any incoming requests to relate spans with the parent child relations. basically everything from extracting and injecting the headers happens inside.
The package inside use the continuation-local-storage so , be careful to lose the context also there is a function which gets you the context to be able to pass it over if its lost in some place in your code.
The package exports the following functions to give you full control and flexibility below we will list the function telling what is the usage of each one and what do they do.
FAQs
client library for jaegar to ease out the instrumenting in express and any other backend application based on express in nodejs
The npm package jaeger-tracer receives a total of 6 weekly downloads. As such, jaeger-tracer popularity was classified as not popular.
We found that jaeger-tracer 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.