
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Generate hapi CRUD handler functions from a model constructor function
var route = {
method: "POST",
path: "/models",
handler: handlers.create
}
// model prototype
var model = {
// model must expose create method
create: function (obj, cb) {
//... do some db stuff
return cb("created");
},
// model must expose findOne method
findOne: function (criteria, cb) {
//... do some db stuff
return cb("found");
},
// model must expose update method
update: function (criteria, changes, cb) {
//... do some db stuff
return cb("updated");
},
// model must expose delete method
del: function (criteria, cb) {
//... do some db stuff
return cb("deleted");
}
// model must expose search method
find: function (criteria, cb) {
//... do some db stuff
return cb("deleted");
}
}
var handlers = require("asbestos")(model);
asbestos exposes a single function that returns on object with 5 methods:
.create
.find
.findOne
.update
.del
params
obj
: an object with create, find, findOne, update, and del methods.
returns
An object with 5 methods:
.create(req, res)
: a hapi handler function. It passes req.payload to the constructor's create method. It returns the object just created on success.
.find(req, res)
: a hapi handler function. It passes req.query to the constructor's find method. It returns the matched documents on success. It returns an empty array if not found.
.findOne(req, res)
: a hapi handler function. It passes req.params.id to the constructor's findOne method. It returns the matched document on success. It returns an empty object and a 404 if not found.
.update(req, res)
: a hapi handler function. It passes req.params.id and req.payload to the constructor's update method. It returns the updated document on success. It returns an empty object and a 404 if not found.
.del(req, res)
: a hapi handler function. It passes req.params.id to the constructor's delete method. It returns the deleted document on success. It returns an empty object and a 404 if not found.
MIT
FAQs
generate CRUD handler functions from a model constructor function
The npm package asbestos receives a total of 1 weekly downloads. As such, asbestos popularity was classified as not popular.
We found that asbestos 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.