impersonator

User impersonation for windows


Keywords
windows, impersonation, user, auth, authentication
License
MIT
Install
npm install impersonator@0.0.1

Documentation

impersonator

User impersonation for windows

Install

$ npm install --save impersonator

Usage

var impersonator = require('impersonator');

var error = impersonator.logon("username", "password", "domain");

if(error) {
  throw error;
}

// this runs with the token of the given user
// fs.read...

impersonator.logoff();

// return to self

API

impersonator.logon(username, password, domain)

Logon with the given credentials and change the token on the running proccess.

impersonator.logoff()

Clear the logged on user and return to the original logged on user.

License: MIT

Author: Noam Okman