
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
aws4-crypto
Advanced tools
crypto drop in replacement for aws4 module based on sjcl. the goal is to reduce the bundle size of aws4 package while used in browser.
npm install aws4-crypto --save
module.exports = {
...
resolve: {
...
alias: {
...
crypto: 'aws4-crypto',
...
}
...
},
...
}
Due to internal usage of sjcl, in order not to bundle crypto-browserify, add to config:
module.exports = {
...
module: {
noParse: /sjcl-aws/, // it requires crypto so webpack will bundle the browserified version. if the require fails it fallback to the browser api.
...
}
...
}
npm install url-lite --save
npm install null-loader --save-dev
add to webpack config:
module.exports = {
...
resolve: {
...
alias: {
...
url: 'url-lite' // aws4 uses url
...
}
...
},
module: {
...
rules: [
{
test: path.resolve(process.cwd(), 'node_modules/buffer/index.js'), // aws4 uses querystring-browser which requires it but it has no usage
use: [{
loader: 'null-loader'
}]
},
...
]
...
}
...
}
MIT
FAQs
crypto drop in replacement for aws4 module based on sjcl
The npm package aws4-crypto receives a total of 4 weekly downloads. As such, aws4-crypto popularity was classified as not popular.
We found that aws4-crypto 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.

Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.

Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.