0.0.2 • Published 9 years ago

peid-finder v0.0.2

Weekly downloads
1
License
-
Repository
github
Last release
9 years ago

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",
 }
]