
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@ambassify/aql-condition
Advanced tools
Tool to help you build AQL conditions in code.
npm install --save @ambassify/aql-condition
const Condition = require('@ambassify/aql-condition');
Get an normalized version of your condition. This function tries to strip as much irrelevant parts of your condition as it can detect.
condition = Condition.normalize(condition);
Parse a condition string and normalize it.
const url = `https://foo.com/?condition=${encodeURIComponent(JSON.stringify(condition))}`;
const condition = Condition.parse(url);
Get a subcondition of a condition by recursively filtering out only the parts you are interested in.
E.g. if you only want parts of the condition that target the "foo" key:
condition = Condition.filter(condition, c => c.key === 'foo');
Easily construct normalized and/or/not conditions.
condition = Condition.and(condition, extraCondition);
condition = Condition.or(condition, anotherCondition);
condition = Condtion.and(a, b, c, d, asMuchAsYouWant);
negated = Condition.not(condition);
FAQs
AQL condition tool
We found that @ambassify/aql-condition 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
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.