Skip to content

mcoot/node-dll-injector

Repository files navigation

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.

About

Native node addon for dll injection in windows

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published