Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@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.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.