New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

kerberos-server

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kerberos-server

Kerberos http server interface

latest
Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
18
-30.77%
Maintainers
2
Weekly downloads
 
Created
Source

Kerberos http server interface for node. Windows Only.

Installation

$ npm i kerberos-server

Note: you need .Net Framework 4.5 installed.

Example

var express = require('express');
var app = express();
var KerberosServer = require('./..');

app.configure(function () {
  this.use(express.logger());
});

app.get('/', function (req, res) {
  res.send('hello ' + req.get('X-User'));
});

var server = new KerberosServer(app);

server.listen(8080, function () {
  console.log('app listening on http://localhost:8080');
}).on('error', function (err) {
  console.error(err.message);
  process.exit(1);
});

How it works?

The server has always a .Net proxy running listening to port, it authenticate requests and pipe to the real node http server running on a random free port (localhost only).

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

Author

Auth0

License

This project is licensed under the MIT license. See the LICENSE file for more info.

FAQs

Package last updated on 16 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts