Socket
Socket
Sign inDemoInstall

peid-finder

Package Overview
Dependencies
8
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    peid-finder

extracts a portable executable entry point string from an executable


Version published
Maintainers
1
Created

Readme

Source

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

Keywords

FAQs

Last updated on 20 Feb 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc