
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.
@monstermakes/larry-executioner
Advanced tools
A library to automate the execution of javascript calls.
This project aims at creating a nodejs libray that can execute arbitrary functions/methods as a set of instructions for automating or testing purposes.
let p = new Parent();
let instructionSet = {
commands: [
{
id: 'initial',
classInstance: p,
method: 'method',
args: [1,2,3]
},
{
id: 'second',
classInstance: p,
method: 'method',
args: [
'$cmd:0->request[2]',
2,
'$cmd:0->request[0]'
]
},
]
};
let execution = new Execution(instructionSet);
return execution.execute()
.then((executionDetails)=>{
executionDetails[0].request.should.eql([1,2,3]);
executionDetails[1].request.should.eql([3,2,1]);
});
This is an example of using the Execution class directly. It demonstrates setting up 2 commands to run seuentially where the request arguments being passed into the second command are based on the first.
These request arguments can be any javascript value however if they are a string that matches the lookup selector format $command:<cmdId>-><dot selector>
they will be replaced with their "looked up" value. The values are looked up against previously executed command. Each command has a unique cmdId if supplied or are identified by their index in the initial instructionSet. When a command is executed an “Execution Details” object is created that has a bunch of properties in it like request
,response
, failure
etc… The dot selector (a lodash style selctor obj.property[1]) is then used against the Execution Details object to pull the appropriate value.
So think of the $cmd:
as a token to tell the executioner to lookup a cmd value, followed by a way to uniquely id the command (id or index). Everything to the right of the ->
is a dot selector to lookup your value in that commands Execution Details object.
Here are a few more examples of request arguments:
$cmd:0->request[0]',
'$cmd:initial->request[0]',
'$cmd:0->request[2].property',
'$cmd:0->request[3][1]',
'$cmd:0->response.someProp',
'$cmd:0->failure.message'
FAQs
A library to automate the execution of javascript calls.
The npm package @monstermakes/larry-executioner receives a total of 0 weekly downloads. As such, @monstermakes/larry-executioner popularity was classified as not popular.
We found that @monstermakes/larry-executioner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.