
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.
AES-256-GCM encryption utility with Express middleware support for secure data transmission
AES-256-GCM encryption utility with Express middleware support for secure data transmission.
crypto modulenpm install secury
import secury from 'secury';
// Create AES handler with a string key
const aes = secury.aes('my-secret-key');
// Encrypt data
const encrypted = aes.encrypt('Hello, World!');
console.log(encrypted); // Base64 encoded string
// Decrypt data
const decrypted = aes.decrypt(encrypted);
console.log(decrypted); // 'Hello, World!'
import secury from 'secury';
// Generate a random 32-byte key
const aes = secury.aes(32);
// Get the generated key
const key = aes.aesKey();
console.log(key.toString('hex'));
// Renew the key
const newKey = aes.renew();
import express from 'express';
import secury from 'secury';
const app = express();
const aes = secury.aes('your-secret-key');
// Decrypt incoming requests
app.post('/secure', aes.authRoute(), (req, res) => {
// req.body is automatically decrypted and parsed as JSON
console.log(req.body);
res.json({ success: true });
});
import express from 'express';
import secury from 'secury';
const app = express();
// Protect routes with a secret token
app.use('/admin', secury.basicAuthor('my-secret-token', { error: 'Unauthorized' }), (req, res) => {
res.json({ message: 'Admin access granted' });
});
FAQs
AES-256-GCM encryption utility with Express middleware support for secure data transmission
We found that secury 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.