← 返回命令列表

Linux command

readpe 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Example

readpe path/to/executable

Example

readpe --all-headers path/to/executable

Example

readpe --all-sections path/to/executable

Example

readpe --header dos path/to/executable

Example

readpe --imports path/to/executable

Example

readpe --exports path/to/executable

说明

readpe displays information about PE (Portable Executable) files, the executable format used by Windows. It can analyze headers, sections, imports, and exports from EXE, DLL, and other PE files. This tool is useful for binary analysis, reverse engineering, and understanding executable structure.

参数

--all-headers
Display all headers present in the PE file
--all-sections
Display all sections in the PE file
--header _type_
Display specific header (dos, coff, optional)
--imports
List imported functions
--exports
List exported functions

FAQ

What is the readpe command used for?

readpe displays information about PE (Portable Executable) files, the executable format used by Windows. It can analyze headers, sections, imports, and exports from EXE, DLL, and other PE files. This tool is useful for binary analysis, reverse engineering, and understanding executable structure.

How do I run a basic readpe example?

Run `readpe path/to/executable` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --all-headers do in readpe?

Display all headers present in the PE file