
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
a quick PoC JS implementation of Justin Troutman's [Pockenacci](https://github.com/justintroutman/pocketblock/blob/master/pockenacci.md) block cipher
a quick PoC JS implementation of Justin Troutman's Pockenacci block cipher
const Pockenacci = require('.')
const pockenacci = new Pockenacci()
pockenacci.setKey('SECRET')
const { ciphertext, mac } = pockenacci.encrypt(
'THIS IS A SECRET MESSAGE THAT WE NEED TO HIDE we really need to hide it'
)
/*
ciphertext:
1EMOIM MS1KM0 LEIU1K 1HVYQI OSPNZ1 0D4SQM
5TV355 5L43PM 5DT35M 1E5OIM QY53M5 LX5UZ5
mac:
084189 676048 088240 286468 648248 666060
868047 468089 608000 888040 648664 680664
*/
try {
const { plaintext } = pockenacci.decrypt(ciphertext, mac, 'SECRET')
} catch (e) {
// throws on invalid mac
}
/*
plaintext:
THIS IS A SECRET MESSAGE THAT WE NEED TO HIDE we really need to hide it
*/
MIT
FAQs
a quick PoC JS implementation of Justin Troutman's [Pockenacci](https://github.com/justintroutman/pocketblock/blob/master/pockenacci.md) block cipher
We found that pockenacci 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.