abbr / NodeSSPI

Server-side windows authentication for Node.js
MIT License
156 stars 19 forks source link

Exit with code 3221225477 #66

Open je4550 opened 5 years ago

je4550 commented 5 years ago
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 refresh F5 really fast it crashes the webserver. If i remove the "retrieveGroups: true" it works fine with no issues.

Awesome stuff btw