0.2.3 • Published 6 years ago

node-dll-injector v0.2.3

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

node-dll-injector

Native node addon for dll injection in windows.

Requires a working node-gyp setup to compile the native addon.

Usage

const injector = require('node-dll-injector');

const isNotepadRunning = injector.isProcessRunning('notepad.exe');

if (isNotePadRunning) {
    const success = injector.inject('notepad.exe', 'mydll.dll');

    if (success) {
        console.log('Successfully injected!');
    } else {
        console.log('Injection failed. :(');
    }
}

There are alternative versions of each function injectPID and isProcessRunningPID that inject based on process id.

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago