
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
github-auth
Advanced tools
A middleware for github authentication.
You can install this module with npm
npm install github-auth
You can use the middleware on a connect/express app like this.
var githubAuth = require('github-auth');
var config = {
team: 'some-team',
organization: 'my-company',
autologin: true, // This automatically redirects you to github to login.
hideAuthInternals: true // After authentication this redirects to original url but without query parameters 'code' and 'state'.
};
var gh = githubAuth('github app id', 'github app secret', config);
app.use(gh.authenticate);
That will validate that the user belongs to the 'some-team' team of the 'my-company' organization on github.
You can also use a whitelist of users, like this.
var githubAuth = require('github-auth');
var config = {
users: ['sorribas', 'mafintosh', 'octocat']
};
var gh = githubAuth('github app id', 'github app secret', config);
app.use(gh.authenticate);
The authenticate middleware sets the req.github property to an object which contains
user and authenticated. That way you can decide what to do with unauthenticated users
(redeirect them to the login page for example). If the req.github object is not present
it means that the user has not tried to login, so you should redirect them to the github
login page which is on gh.loginUrl
You can also use the .login middleware which redirects you to the github oauth login page.
app.get('ghlohin', gh.login);
To get the users in a team with the github API you need the full write access on the user profile, which is not really nice. You can avoid this by passing some github credentials with access to the team to the module so it uses basic HTTP auth.
var githubAuth = require('github-auth');
var config = {
team: 'some-team',
organization: 'my-company',
credentials: {
user: 'myghuser',
pass: 'mypass'
}
};
app.use(githubAuth('github app id', 'github app secret', config).authenticate);
Also, you don't have to use this module with connect or express. You could just use it in your regular node http server like this.
http.createServer(function(request, response) {
var config = {
team: 'some-team',
organization: 'my-company'
};
githubAuth('github app id', 'github app secret', config).authenticate(request, response, function(err) {
if (err) return response.end(err);
// your http code here
});
});
maxAge: Sets the maxAge of the authentication cookie (milliseconds). Defaults to set a session cookie.secret: The module uses a random secret to sign the authentication cookie. If you want to manage this yourself you can do it by providing it as part of the config.There is an example in the examples folder using Express 3. To run it you need to install express 3.x and github-auth.
FAQs
connect compatible middleware for auth with github
The npm package github-auth receives a total of 22 weekly downloads. As such, github-auth popularity was classified as not popular.
We found that github-auth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.