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
Varunkumar nagarajan
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
Rafal Pastuszak
source
to share
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
xds2000
source
to share