JSPM

impersonator

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q11916F
  • License MIT

User impersonation for windows

Package Exports

  • impersonator

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (impersonator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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