
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.
npm install cryption
提供流的数据加解密接口:
const cryption = require('cryption');
const fs = require('fs');
(async () => {
// 加密
const input = fs.createReadStream('/input.txt');
const output = fs.createWriteStream('/encoded.txt');
await cryption.encode({ readable: input, writable: output, algorithm: 'aes192', password: 'password' });
// 解密
const input = fs.createReadStream('/encoded.txt');
const output = fs.createWriteStream('/output.txt');
await cryption.decode({ readable: input, writable: output, algorithm: 'aes192', password: 'password' });
})();
npm install cryption -g
Usage: cryp [options] [command]
Options:
-v --version output the version number
-h, --help output usage information
Commands:
encode [options] [file] 加密文件
decode [options] [file] 解密文件
* show help
encode decode options:
-a --algorithm <algo> 选择算法
-p --password <pass> 自定义加密或解密密码
-r --retain 是否保留源文件
加密本文件夹下的文件input.txt:
cryp encode ./input.txt
自定义加密密码加密:
cryp encode -p secret ./input.txt
解密本文件夹下的文件input.txt:
cryp encode ./input.txt.cryp
自定义解密密码加密:
cryp encode -p secret ./input.txt.cryp
FAQs
Node.js 加解密流数据
We found that cryption 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
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.