Washi1337 / AsmResolver

A library for creating, reading and editing PE files and .NET modules.
https://docs.washi.dev/asmresolver/
MIT License
853 stars 127 forks source link

AsmResolver.Elf #505

Open ds5678 opened 10 months ago

ds5678 commented 10 months ago

What would be involved in supporting ELF? From a brief look online, the specification appears to be fully opensource. If I wanted to work on this, how would you want me to go about that?

Washi1337 commented 10 months ago

What's most important is that it should follow the same structure and API design as the other libraries related to the PE file format to keep things consistent and predictable.

In practical terms that would probably mean something in the lines of the following as a start:

I would say we do not need IElfFile and IElfImage. The equivalent ones for PE will very likely be removed in the future (see #445).

Avroke commented 9 months ago

Hello, there's already ELFSharp, a good C# library for parsing ELF files.