peid-finder
v0.0.2
Published
extracts a portable executable entry point string from an executable
Downloads
1
Readme
peid-finder
Will find extract a portable executable entrypoint string (up to 32 characters) from an executable for the purpose of identifying it.
This can be used as a NodeJS module
var peid-finder = require("peid-finder");
var peid-finder.find("**/*.exe",8,function (error, peids) {
});
Or from command line after install:
$ peid-finder **/*.exe 8
Both options will return an array of objects that have an executable name and peid, like below:
[
{
"executable":"file.exe",
"peid":"12345678",
}
]