NodeSSPI icon indicating copy to clipboard operation
NodeSSPI copied to clipboard

Server-side windows authentication for Node.js

Results 27 NodeSSPI issues
Sort by recently updated
recently updated
newest added

I am unable to get this to run in a nanoserver container. I did an `npm install --no-optional`, so maybe that is the issue? Or is it an issue with...

Updated caveats to include section on user authentication with certain browsers that take more than one attempt to get user information. Included code to depict one potential work around.

Hi! I am trying to implement node-sspi in my reactjs project using react-admin framework. I tested node-sspi in a test express app and it worked just right. I dont really...

Hi, I am using node-sspi module for implementing windows authentication and its working fine but I can't find a way to logout the from current session until unless I close...

I have this working on Windows 7 and Windows 2012 R2 (both are x64, using Node.js 8.2.1 x32). Today other team members got a new PC builds - Win 10...

Hi, I'm using NodeSSPI as a global middleware in my Express backend (port 3000) just like in your example alongside an Angular frontend (port 4200). I added a console.log(err) inside...

Hi @abbr Do you know if this module works if request comes from a Linux machine joined to Windows domain? Thanks

```javascript const userController = require('../../controllers/user.controller'); const asyncHandler = require("express-async-handler"); const nodeSSPI = require('node-sspi') const nodeSSPIObj = new nodeSSPI({ domain: "XXX", authoritative: true }); module.exports = asyncHandler(async (req, res, next) =>...

``` var nodeSSPIObj = new nodeSSPI({ retrieveGroups: true }); app.use(function (req, res, next) { nodeSSPIObj.authenticate(req, res, function (err) { if(err){ console.log(err); } res.finished || next() }); }); ``` If I...

I have an application running using Node.js and I'm using sspi for authentication. I use the following code: app.use(function (req, res, next) { var nodeSSPI = require('node-sspi') var nodeSSPIObj =...