My open source project-Windows PE and Linux ELF executable file parsing tool

Understanding the format of executable files is very necessary for a software engineer. It helps to understand the process of loading and running programs. This article is an executable file parsing tool that I developed by myself. It can parse Windows PE format (exe/dll/obj/sys), etc., and it can also parse Linux ELF format (.out). /so/o), for reference.

gitee source code address: https://gitee.com/qq827992983/PE_and_ELF

The executable file format of Windows is PE format. I have blogged about it before ( click to view ).
The executable file format of Linux is ELF format, which I have written on my previous blog. Click to view

running result:

Analyze PE:

My open source project-Windows PE and Linux ELF executable file parsing tool

Analyze ELF

My open source project-Windows PE and Linux ELF executable file parsing tool

Guess you like

Origin blog.51cto.com/14207158/2663421