2.1.2 • Published 4 years ago

dllinjector v2.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

dllinjector

npm install dllinjector

Built for use on Windows OS with Node.js. If you want to use this for Electron, please view the "electron-dllinjector" NPM package

//Access to the injector class
const dllinjector = require('dllinjector')

Class methods

InjectDLL(<string> DLLFilePath, <int>ProcessID)
  //Injects the dll at the specified path into the process with specified id
  //Returns true if no error

GetProcessIDByName(<string> ProcessName)
  //Searches process list for the first occurance of the specified process name and returns the process id
  
KillProcess(<int> ProcessID)
  //Kills the process with the specified ID
  //Returns true if killed, false otherwise
  
GetRunningApplications()
  //Returns array of objects. Ex. [{pid: 0, name:"notepad.exe"},{pid: 1, name:"program.exe"},...]

&more
2.1.2

4 years ago

2.0.0

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago