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.
@npmcorp/changes-stream
Advanced tools
Forked from https://github.com/jcrugzz/changes-stream
A fault tolerant changes stream with builtin retry.
Inspired by [follow
][https://github.com/iriscouch/follow].
Attaching a 'readable' listener is not supported (yet).
$ npm install @npmcorp/changes-stream --save
# Standup a container with a CouchDB instance
$ npm run docker:fresh
$ npm test
# To enable debug logging from ./index.js:
$ DEBUG=changes-stream npm test
Alternatively, use COUCH_URI
to point to an existing CouchDB.
$ COUCH_URI=http://user:pass@example-couch.com:5984/changes_stream_db \
npm test
Options to customize _changes
request.
{
// full database URL
db: 'http://localhost:5984/my_db',
// Can also be longpoll technically but not currently implemented
feed: 'continuous',
// Can be a defined couchdb view, a local filter function or an array of IDs
filter: 'docs/whatever',
// How long to wait before retrying the request
inactivity_ms: 60 * 60 * 1000,
// How long (in milliseconds) CouchDB should wait for a change before closing
// the feed
timeout: undefined,
// http timeout
requestTimeout: 2 * 60 * 1000,
// http agent
agent: undefined,
// update sequence to start from, 'now' will start it from latest
since: 0,
// how often (in milliseconds) we want couchdb to send us a heartbeat message
heartbeat: 30 * 1000,
// { main_only | all_docs }
// Specifies how many revisions are returned in the changes array. The default,
// main_only, will only return the current “winning” revision; all_docs will
// return all leaf revisions (including conflicts and deleted former conflicts.)
style: 'main_only',
// whether or not we want to return the full document as a property
include_docs: false,
// custom arbitrary params to send in request e.g. { hello: 'world' }
query_params: {},
// switch the default HTTP method to POST (cannot be used with a filter array)
use_post: false
}
FAQs
Stream changes from CouchDB via the /_changes api
The npm package @npmcorp/changes-stream receives a total of 6 weekly downloads. As such, @npmcorp/changes-stream popularity was classified as not popular.
We found that @npmcorp/changes-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 52 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.