
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
grunt-cdn-ex
Advanced tools
Properly prepends a CDN url to those assets referenced with absolute paths (but not URLs)
Grunt plugin for properly prepending a CDN url to those assets referenced with absolute paths (but not URLs)
This plugin requires Grunt ~0.4.0
Install this grunt plugin next to your project's gruntfile with: npm install grunt-cdn
Then add this line to your project's Gruntfile.js
gruntfile:
grunt.loadNpmTasks('grunt-cdn');
Then specify your config:
grunt.initConfig({
cdn: {
options: {
/** @required - root URL of your CDN (may contains sub-paths as shown below) */
cdn: 'http://cdn.cloudfront.net/container/',
/** @optional - if provided both absolute and relative paths will be converted */
flatten: false,
/** @optional - if provided will be added to the default supporting types */
supportedTypes: { 'phtml': 'html' }
},
dist: {
/** @required - gets sources here, may be same as dest */
cwd: './dist/static/',
/** @required - puts results here with respect to relative paths */
dest: './dist/static/',
/** @required - files to process */
src: ['index.html', '*.css', '{,*/}*.html', '{,**/}*.html'],
}
}
});
With the following input
<!DOCTYPE html>
<html>
<head>
<title>Mural.ly</title>
<link rel="stylesheet" type="text/css" href="/static/compiled.css?v=13512tyu3kds" />
</head>
<body id="landing-page">
...
</body>
</html>
After running the task the output looks like
<!DOCTYPE html>
<html>
<head>
<title>Mural.ly</title>
<link rel="stylesheet" type="text/css" href="http://cdn.cloudfront.net/container/static/compiled.css?v=13512tyu3kds" />
</head>
<body id="landing-page">
...
</body>
</html>
As you can see we maintain the "container" pathname in this case, and we also keep the original query strings. This task is really handy if you upload stuff from your CI to make it transparent to developers.
FAQs
Properly prepends a CDN url to those assets referenced with absolute paths (but not URLs)
The npm package grunt-cdn-ex receives a total of 2 weekly downloads. As such, grunt-cdn-ex popularity was classified as not popular.
We found that grunt-cdn-ex 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.