0.1.1 • Published 10 years ago
passport-ssh v0.1.1
passport-ssh
Passport strategy for authenticating with ssh.
Installation
$ npm install passport-sshUsage
The ssh strategy authenticates users using ssh. You
can specify server credentials to attempt to ssh into. For example:
Basic setup using ssh daemon running on localhost:22
passport.use(new SSHStrategy());if i tried to login as user bob, the equivalent ssh command would be:
$ ssh bob@localhostExample using custom hostname and port
passport.use(new SSHStrategy({
host: "ec2-54-124-59-274.us-west-2.compute.amazonaws.com",
port: 2200
}));if i tried to login as user ubuntu, the equivalent ssh command would be:
$ ssh -p 2200 ubuntu@ec2-54-124-59-274.us-west-2.compute.amazonaws.comYou can optionally provide a verify callback to handle custom edge cases
passport.use(new SSHStrategy(
function(user, done) {
done(null, user);
}
));Authenticate Requests
Use passport.authenticate(), specifying the 'ssh' strategy, to authenticate requests.
app.get('/secret', passport.authenticate('ssh', { failureRedirect: '/login' }),
function(req, res) {
res.redriect("/");
}
);Tests
nah