
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.
This is a JSON parser for the Bennu parser combinator library. This module is good for:
JSON.parse
function is not available
(though other polyfills may be more performant).This module exports parsers for json
, array
, object
, number
, and
string
. Using the json parser to parse strings into objects requires using
the Bennu library.
var bennu = require('bennu');
var json = require('bennu-json').json;
function jsonParse(str) {
return bennu.parse.run(
bennu.lang.then(json, bennu.parse.eof),
str.trim()
);
}
console.log(jsonParse('{"a": [-5.12e100, null]}'));
// { a: [ -5.12e+100, null ] }
You can also do incremental parsing with Bennu:
var bennu = require('bennu');
var json = require('bennu-json').json;
var s1 = bennu.incremental.runInc(bennu.lang.then(json, bennu.parse.eof));
var s2 = bennu.incremental.provideString('[123,45', s1);
var s3 = bennu.incremental.provideString('6,789]', s2);
console.log(bennu.incremental.finish(s3));
// [ 123, 456, 789 ]
FAQs
A JSON parser for Bennu.
The npm package bennu-json receives a total of 0 weekly downloads. As such, bennu-json popularity was classified as not popular.
We found that bennu-json 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.