
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.
A frontend cache-busting static middleware for express.
###Install
npm install --save bomb
###Example
Let's say we want to serve all the css, js and HTML files in our public directory:
├── index.js
└── public
├── example.css
├── example.js
├── other.txt
├── example.png
└── other
└── index.html
We can create a new bomb box and use it as a middleware:
var Express = require('express');
var Bomb = require('bomb');
var Path = require('path');
var app = Express();
var box = new Bomb.Box({
url: '/public', // use this as the URL root
path: Path.join(__dirname, 'public'), // look in this directory for files
regex: /\.(css|js|html)/ // only serve files that match regex
sendOptions: {} // options for the `send` module
});
app.use(box);
app.listen(4000);
We can now request the files on the natural or hashed URLS:
/public/example.css
/public/example-4591dd5c9fd5aab8f5d7df6ac939441c.css
/public/example.js
/public/example-00e062122c3306198fdbe5d3ddd01fe0.js
/public/other/index.html
/public/other/index-33c805c6162941684b6fc618d0e42ab8.html
To get the hashed URL from a natural one, just call box.getHashedUrl(url)
:
box.getHashedUrl('/public/example.css') === '/public/example-4591dd5c9fd5aab8f5d7df6ac939441c.css'
To get the natural URL from a hashed one, just call box.getNaturalUrl(url)
:
box.getNaturalUrl('/public/example-4591dd5c9fd5aab8f5d7df6ac939441c.css') === '/public/example.css'
FAQs
A frontend cache-busting static middleware for express
The npm package bomb receives a total of 0 weekly downloads. As such, bomb popularity was classified as not popular.
We found that bomb 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.