noamokman / impersonator

User impersonation for windows
MIT License
1 stars 0 forks source link

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