
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
cachepuncher
Advanced tools
Punch browser caching straight in the cache!
Don't you just hate browsers that cache overly aggressively? Yes, I'm looking at you Chrome and Mobile Safari, you rule breaking maniacs. It's time for the cache puncher!
This tiny piece of software will generate a unique time-based code that you can inject into your URLs whenever you need to do some ajax or image loading. It guarantees no two codes are the same, even if generated within the same millisecond. It comes with a few options to further shrink down the code if you care a lot about saving a few extra precious bytes.
Install with component(1):
$ component install wizcorp/cachepuncher
Cache puncher always returns a code that is URL friendly, so no further URL escaping is needed (though it won't break if you do encode it). The output format is a numerical (base 2-36, you choose) timestamp, followed by an iteration number to avoid collisions within a single timestamp. You may change the output rules for each punch, and cache puncher will still guarantee uniqueness for each generated code.
A cache puncher instance has only one function that will keep generating unique codes: punch
.
Example:
var punch = require('cachepuncher').punch;
var image = new Image();
image.src = 'http://example.com/punch.jpg?rand=' + punch();
The punch
function takes arguments:
var code = punch({
msec: true,
base: 16,
epoch: new Date(2013, 0, 1, 0, 0, 0)
});
option | type | default | meaning |
---|---|---|---|
msec | boolean | false | Output milliseconds. Useful (but not required) if you need many codes per second. |
base | number | 10 | Output the code in base-N, eg 16 for hex. Must be between 2 and 36. |
epoch | Date | unix epoch | Set a custom epoch, to lower the output number. |
You can use the default cache puncher as shown in the example above, or you can create your own with default settings for the punch function.
Example:
var puncher = require('cachepuncher');
var punch = puncher.create({ base: 36 }); // output in base 36 by default
var image = new Image();
image.src = 'http://example.com/punch.jpg?rand=' + punch();
It's a wink to the fake movie Cock Puncher starring the awesome Steven Seagal, featured in the hilarious The Onion Movie. I wish they made Cock Puncher an actual movie. Please don't sue me for using the image, and don't punch my cock either please.
MIT
FAQs
Punch browser caching right in the cache
The npm package cachepuncher receives a total of 2 weekly downloads. As such, cachepuncher popularity was classified as not popular.
We found that cachepuncher 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.