
Research
Shai-Hulud Descends to Hades: Miasma Worm Campaign Spreads with New PyPI Wave
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.
github-data
Advanced tools
This is essentially a Node.js interface to make low-level git calls through the GitHub Git Data API.
Docs are in the docs folder. Here's a simple example of how to use it.
Low level git plumbing objects are available to do pretty much whatever you want with. There is also a GitFile inteface that tries to simplify some things. But it has only been tested with files in the root directory of the repository.
var GitData = require('./index');
var username = process.env['GH_USERNAME'];
var authToken = process.env['GH_PASSWORD'];
var gdata = new GitData(username, authToken, "numenta", "experiments");
gdata.getBranch("master", function(err, master) {
console.log('branch: ' + master.ref);
master.getFile('temp.txt', function(err, file) {
console.log(file);
file.blob.setContents(file.blob.getContents() + '\nUpdated on: ' + new Date());
file.commit('Updated through GitFile interface.', function(err, commit) {
// Still have to push the new commit.
master.push(commit, function(err) {
console.log('push done!');
master.getCommit(function(error, latestCommit) {
console.log(latestCommit);
});
});
});
});
});
FAQs
Tools for running git commands without git.
We found that github-data 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 found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.