
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
passport-client-cert
Advanced tools
Passport.js strategy for TLS client certificate authentication
passport.js strategy for TLS client certificate authentication and authorisation.
passport-client-cert is for TLS connections direct to a Node.js application.
The strategy constructor requires a verify callback, which will be executed on each authenticated request. It is responsible for checking the validity of the certificate and user authorisation.
passReqToCallback
- optional. Causes the request object to be supplied to the verify callback as the first parameter.The verify callback is passed with the client certificate object and a done
callback. The done
callback must be called as per the passport.js documentation.
var passport = require('passport');
var ClientCertStrategy = require('passport-client-cert').Strategy;
passport.use(new ClientCertStrategy(function(clientCert, done) {
var cn = clientCert.subject.cn,
user = null;
// The CN will typically be checked against a database
if(cn === 'test-cn') {
user = { name: 'Test User' }
}
done(null, user);
}));
The verify callback can be supplied with the request
object by setting the passReqToCallback
option to true
, and changing callback arguments accordingly.
passport.use(new ClientCertStrategy({ passReqToCallback: true }, function(req, clientCert, done) {
var cn = clientCert.subject.cn,
user = null;
// The CN will typically be checked against a database
if(cn === 'test-cn') {
user = { name: 'Test User' }
}
done(null, user);
}));
Install and start the example server app:
$ npm install
$ cd example
$ node example-server.js
Submit a request with a client certificate:
$ curl -k --cert certs/joe.crt --key certs/joe.key --cacert certs/ca.crt https://localhost:3443
If curl
fails and you are using OSX Mavericks or newer (where support for ad-hoc CA certifcates is broken, try wget
instead:
$ wget -qSO - --no-check-certificate --certificate=certs/joe.crt --private-key=certs/joe.key --ca-certificate=certs/ca.crt https://localhost:3443/
Requests submitted with joe.crt
are authorised because joe
is in the list of valid users. Requests submitted without a certificate, or with bob.crt
will fail with a HTTP 401
.
$ npm install
$ npm test
FAQs
Passport.js strategy for TLS client certificate authentication
The npm package passport-client-cert receives a total of 2,077 weekly downloads. As such, passport-client-cert popularity was classified as popular.
We found that passport-client-cert 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.