Kerberos authentication with Node.js

I need to access a (RESTful) service that only supports Kerberos authentication from my Node.js application. Is there a module in Node for this?

Passport , a popular authentication module for Node.js, doesn't seem to have a strategy for Kerberos auth.

+3


source to share


2 answers


There are not many kerberos modules in the npm registry, but these are currently the smarter choices:

https://npmjs.org/package/kerberos



I would use it with passport and default local strategy.

0


source


I use the local strategy as my default strategy. and use node-krb5 to check the username and password. it works, you can try.



0


source







All Articles