
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Simple request library for CouchDB. Provides both a Node.js module and a browser module (based on jQuery.ajax), with better CouchDB error reporting and a simpler API than making XHR requests directly in the browser.
// browser
require(['couchr'], function (couchr) {
couchr.get('/dbname/docid', function (err, doc) {
...
});
});
// Node
var couchr = require('couchr');
couchr.get('http://hostname:port/dbname/docid', function (err, doc) {
...
});
couchr.get (url, /*optional*/params, function (err, res, req) { ... })
couchr.post(url, /*optional*/data, function (err, res, req) { ... })
couchr.put (url, /*optional*/data, function (err, res, req) { ... })
couchr.del (url, /*optional*/data, function (err, res, req) { ... })
couchr.head(url, function (err, res, req) { ... })
couchr.copy(from, to, function (err, res, req) { ... })
var feed = couchr.changes(db_url);
feed.on('change', function (change_object) { ... });
feed.on('error', function (err) { ... });
feed.pause();
feed.resume();
Browser (using jam):
jam install couchr
Node (using npm):
npm install couchr
FAQs
Lightweight XHR wrapper for CouchDB requests
The npm package couchr receives a total of 5 weekly downloads. As such, couchr popularity was classified as not popular.
We found that couchr 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.