execracker
v0.1.3
Published
A Rust-based exe decompiler for Node.js
Readme
Execracker
A Rust-based EXE decompiler and analyzer for Node.js.
Installation
npm install execrackerUsage
As a Library
const { decompile } = require('execracker');
try {
const result = decompile('./path/to/program.exe');
console.log(result);
} catch (error) {
console.error(error);
}As a CLI
# Output to console
npx execracker ./path/to/program.exe
# Output to file
npx execracker ./path/to/program.exe output.asmFeatures
- Parses PE (Portable Executable) headers.
- Disassembles the
.textsection using Capstone engine. - Fast and efficient (written in Rust).
Building from Source
npm install
npm run build