
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
hapi-test-request
Advanced tools
HTTP assertions made easy for Hapi using Promises
This module requires Node.js v4.1+
Server file should export server server.js
:
'use strict';
const Hapi = require('hapi');
// Create a server with a host and port
const server = new Hapi.Server();
server.connection({
host: 'localhost',
port: 8000
});
// Add the route
server.route({
method: 'GET',
path:'/hello',
handler: function (request, reply) {
return reply({
test: true
});
}
});
server.route({
method: 'GET',
path: '/api/v1/test',
handler: function (request, reply) {
reply({
test: true
});
}
});
// Start the server
server.start((err) => {
if (err) {
throw err;
}
});
// !!!!!!!
module.exports = server;
Example of some.test.js
:
const server = require('../server.js');
const request = require('hapi-test-request')(server);
//...
let.it('something', (done) => {
request.call({
method: 'POST',
url: '/mail',
payload: {
email: 'someemail@email.com'
}
}).then((response) => {
// ....
expect(response.statusCode).to.equal(200);
done();
});
});
{
prefix: '/api/v1' // Will add prefix for all requests
}
Example:
const server = require('./server');
const request = require('hapi-test-request');
const lab = require('lab');
lab.it('Some tests', (done) => {
const config = {
prefix: '/api/v1'
};
request(server, config)
.call({
method: 'GET',
url: '/test' // will be merged with prefix. Will be called: /api/v1/test
})
.then((res) => {
expect(res.statusCode).to.equal(200);
})
.then(done)
.catch(done);
});
FAQs
Hapi request helper for testing
The npm package hapi-test-request receives a total of 1 weekly downloads. As such, hapi-test-request popularity was classified as not popular.
We found that hapi-test-request 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.