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.
Simple tool for HTTP response simulation, automated and load testing.
When started, server parses query string of incoming requests and responds with simulated latency, status code, JSON payload or any combination of the mentioned above.
npm install simdummy
To simulate echo headers response with approximately 200 ms latency, start the server:
const SimServer = require('simdummy')
const server = new SimServer().start()
Make HTTP call with simulation settings:
time curl http://localhost:9999/?l=200\&n=50\&eh=1
Available query string parameters:
const SimServer = require('simdummy')
// set latency and response body size limits
const limits = { maxLatency: 500, maxBodySize: 16 * 1024 }
const server = new SimServer(limits)
server.start(s =>
// execute code on start
console.log(`Simulation server started at ${s.address().port}`),
// set custom port
9999
)
// request event is emited after settings parsed and limits applied
server.on('request', (req, res, settings) => {
console.log('Simulating response')
// override response latency
setting.latency.actual = 1000
// override response body
settings.response.body = 'Hello, world!'
// or end response right here
res.end()
})
// stop the server
server.close(err => {
// execute code on stop
console.log('Simulation server stopped')
})
FAQs
Simple tool for HTTP response simulation, automated and load testing
The npm package simdummy receives a total of 0 weekly downloads. As such, simdummy popularity was classified as not popular.
We found that simdummy 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.