
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
github-key-token
Advanced tools
Use your local ssh private key to create a username token that can be verified using your Github public key
Use your local ssh private key to create a username token that can be verified using your Github public key
npm install github-key-token
var ghtoken = require('github-key-token')
var verify = ghtoken.verifier('test', [
'mafintosh',
'sorribas',
'watson'
])
// use your own username here - mine won't work for you :)
var sign = ghtoken.signer('test', 'mafintosh')
sign(function(err, token) {
if (err) throw err
console.log('Got user token', token)
verify(token, function(err, username) {
if (err) throw err
console.log('Verified that the token came from '+username)
})
})
Default TTL for the token is 3600s. To change this pass it as an option
var sign = ghtoken.signer('test', 'mafintosh', {ttl:1000}) // 1000s ttl
This module is useful if you are building semi private api and want to do auth without having to setup username/passwords and send them over the wire
MIT
FAQs
Use your local ssh private key to create a username token that can be verified using your Github public key
The npm package github-key-token receives a total of 0 weekly downloads. As such, github-key-token popularity was classified as not popular.
We found that github-key-token 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.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.