Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
An updated, modern network recorder with the goal of being test framework agnostic. Inspired by:
npm install --save-dev nock-dvr
When you need to record cassettes you can either:
dvr.describe
instead of describe
dvr.it
instead of it
dvr.describe
will record an episode before each test in that block. So
you can have multiple it
s and it will record any requests within them.
dvr.it
will record a cassette for one specific test.
They both support .skip
and .only
as mocha does.
const request = require('request');
const assert = require('assert');
const dvr = require('nock-dvr');
describe('normal test', function() {
dvr.it.only('works', function(done) {
request('http://localhost:4000/users', function(err, res, body) {
assert(!err, 'was success');
done();
});
});
it('some other test', function() {
// You can use mocha how you normally would to group tests
});
});
dvr.describe.skip('skipped test', function() {
// Anything in here will be skipped
// If the skip is removed, this request would be recorded for playback in
// later tests
it('makes request', function(done) {
request('http://localhost:4000/users', function(err, res, body) {
assert(!err, 'was success');
done();
});
});
});
List of available configuration options
dvr.it('works', {
mode: 'all'
}, function(done) {
request('http://localhost:4000/users', function(err, res, body) {
assert(!err, 'was success');
done();
});
});
dvr.describe('works', { mode: 'all' }, function() {
it('makes request', function(done) {
request('http://localhost:4000/users', function(err, res, body) {
assert(!err, 'was success');
done();
});
});
});
A dvr.config
method is exposed to set default configuration on a global level.
This should be done before any of your tests have run. In mocha you can put this
in a helper file.
const dvr = require('nock-dvr');
dvr.config({
excludeScope: ['github.com']
});
FAQs
A modern network request recording for testing complex Web APIs.
The npm package nock-dvr receives a total of 0 weekly downloads. As such, nock-dvr popularity was classified as not popular.
We found that nock-dvr 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 threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.