Coder Social home page Coder Social logo

jnastarot / enma_pe Goto Github PK

View Code? Open in Web Editor NEW
74.0 4.0 27.0 787 KB

Cross-platform library for parsing and building PE\PE+ formats

License: MIT License

C++ 99.98% C 0.02%
portable-executable executable-formats pe-format pe-analyzer binary-analysis malware-analysis malware-research pe32-plus parsing-library reverse-engineering

enma_pe's People

Contributors

eran-yt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

enma_pe's Issues

example to use

please add it some example to use this parser for dot net pe, or explain how to work

get_export_directory is very slow

get_export_directory is O(n^2), but most of the work is redundant, as it constantly reparses the export name array, when it could be parsed once, put into a map (or unordered_map) and then just retrieve the name by ordinal.
This would at most be O(n*log(n)) and is much faster.

Crash when parsing PE with huge number of exception entries

Hey,
When parsing a PE with a huge number of exception entries, enma_pe crashes in handle_unwind_info (pe_exceptions.cpp)
The problem is that in line 302
auto& unwind_entry = exceptions.get_unwind_entries()[exceptions.get_unwind_entries().size() - 1];
A reference in used, and then the function is called recursively, and the vector exceptions is reallocated, and so the reference is now invalid, but is used later.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.