
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
⚠️ PROOF-OF-CONCEPT: A simple ArangoDB client demonstrating 'slopsquatting' risks from LLM hallucinations
⚠️ SECURITY RESEARCH PROJECT ⚠️
GitHub: github.com/groovecoder/arangoql NPM: npmjs.com/package/arangoql
This is a proof-of-concept demonstrating "slopsquatting" - a supply chain attack vector where:
npm install <hallucinated-name>This package is harmless - it only displays a warning message. But it proves that if you installed this by mistake, malicious code could have:
arangojs?If an LLM suggested you install "arangoql" for ArangoDB support, it likely meant the official package: arangojs
To fix this:
npm uninstall arangoql
npm install arangojs
If you intentionally want to use this proof-of-concept:
const ArangoQL = require('arangoql');
const db = new ArangoQL({
url: 'http://localhost:8529',
database: '_system',
username: 'root',
password: ''
});
// Execute AQL queries
const result = await db.query('FOR doc IN myCollection RETURN doc');
// Work with collections
const users = db.collection('users');
await users.save({ name: 'Alice', age: 30 });
await users.find({ name: 'Alice' });
await users.remove('user-key');
Note: This is a minimal implementation. For production use, use the official arangojs package.
crossenv instead of cross-env (malicious version downloaded 700k+ times)package.json for postinstall hooksnpm audit and SnykMIT License - This is an educational/research project.
Found a way to improve this proof-of-concept? Pull requests welcome!
Visit the repository: github.com/groovecoder/arangoql
This package is for educational and research purposes only. It contains no malicious code and only displays warning messages. The author is not responsible for misuse of this concept.
FAQs
⚠️ PROOF-OF-CONCEPT: A simple ArangoDB client demonstrating 'slopsquatting' risks from LLM hallucinations
The npm package arangoql receives a total of 6 weekly downloads. As such, arangoql popularity was classified as not popular.
We found that arangoql demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.