
Research
/Security News
Intercomβs npm Package Compromised in Ongoing Mini Shai-Hulud Worm Attack
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.
@etclabscore/dl-github-releases
Advanced tools
<center> <img alt="Dependabot status" src="https://api.dependabot.com/badges/status?host=github&repo=etclabscore/dl
A node module to download Github assets for Github releases. It will also uncompress zip files.
$ npm install -g @etclabscore/dl-github-releases
$ dl-github-releases --help
Usage: download-github-releases [options] <user> <repo>
Options:
-V, --version output the version number
-o, --outputDir [output] output directory [output] (default: "/Users/zb/Code/etclabs/dl-github-releases")
-p, --includePre download prerelease
-d, --includeDraft download draft releases
-a, --filterAssetsByName <rexexp> filter assets name
-z, --zipped don't extract zip files
-h, --help output usage information
Usage: download-github-release [options] <user> <repo> [outputdir]
Options:
-h, --help output usage information
-V, --version output the version number
-p, --prerelease download prerelease
-s, --search <regexp> filter assets name
$ dl-github-releases -a *.md open-rpc spec
Downloading open-rpc/spec@1.0.0...
spec.md ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ 0.0s
spec.pdf βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ--------- 0.1s
npm install --save dl-github-releases
var downloadReleases = require('dl-github-releases');
var user = 'some user';
var repo = 'some repo';
var outputdir = 'some output directory';
// Define a function to filter releases.
function filterRelease(release) {
// Filter out prereleases.
return release.prerelease === false;
}
// Define a function to filter assets.
function filterAsset(asset) {
// Select assets that contain the string 'windows'.
return asset.name.indexOf('windows') >= 0;
}
downloadReleases(user, repo, outputdir, filterRelease, filterAsset)
.then(function() {
console.log('All done!');
})
.catch(function(err) {
console.error(err.message);
});
FAQs
<center> <img alt="Dependabot status" src="https://api.dependabot.com/badges/status?host=github&repo=etclabscore/dl
The npm package @etclabscore/dl-github-releases receives a total of 36 weekly downloads. As such, @etclabscore/dl-github-releases popularity was classified as not popular.
We found that @etclabscore/dl-github-releases demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.Β It has 4 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.

Research
/Security News
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.

Research
Socket detected a malicious supply chain attack on PyPI package lightning versions 2.6.2 and 2.6.3, which execute credential-stealing malware on import.

Research
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.