
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.
grunt-rev-md5-ideame
Advanced tools
Automates resource versioning based on the MD5 hash of referenced files (works on CSS, HTML, SOYs)
Grunt plugin for automating resource versioning based on the MD5 hash of referenced files (works on CSS, HTML, SOYs)
Install this grunt plugin next to your project's gruntfile with: npm install grunt-rev-md5
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-rev-md5');
Then specify your config:
grunt.initConfig({
revmd5: {
dist: {
/** @required - string (or array of) including grunt glob variables */
src: ['./static/*.html', './static/*.css', './static/*.soy'],
/** @optional - if provided a copy will be stored without modifying original file */
dest: './dist/static/',
/** @required - base file system path for your resources (which MD5 will be calculated) */
relativePath: './',
/** @optional - when provided if a resource isn't found will fail with a warning */
safe: true
}
}
});
There are two types of path resolution that this task do: relative and absolute.
image1.png
from styles.css
which is
stored on /static/home/css
in this way: background: url('../image1.png')
In this case our grunt task will go to css path and combine its path (the css) with the relative path resulting in `/static/home/image1.png'. This looks as the most comprehensive behavior in this case.
image2.png
from styles.css
and you've
set the relativePath
to be ./public
background: url('/static/images/image2.png')
In this case our grunt task will go to the relativePath
and combine it with the resource path
resulting in `./public/static/images/image2.png'.
NOTE: We consider paths starting with . (or ..) as relative, and with / absolute. We're using the same aproach as the *NIX file-system.
FAQs
Automates resource versioning based on the MD5 hash of referenced files (works on CSS, HTML, SOYs)
The npm package grunt-rev-md5-ideame receives a total of 0 weekly downloads. As such, grunt-rev-md5-ideame popularity was classified as not popular.
We found that grunt-rev-md5-ideame demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.