From 3f3f5d53f5c3bc93987a0f1155da414f89a2070d Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 24 Aug 2021 20:46:56 +0200 Subject: [PATCH] readpe: add page (#6398) --- pages/linux/readpe.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/readpe.md diff --git a/pages/linux/readpe.md b/pages/linux/readpe.md new file mode 100644 index 000000000..5f4825347 --- /dev/null +++ b/pages/linux/readpe.md @@ -0,0 +1,28 @@ +# readpe + +> Displays information about PE files. +> More information: . + +- Display all information about a PE file: + +`readpe {{path/to/executable}}` + +- Display all the headers present in a PE file: + +`readpe --all-headers {{path/to/executable}}` + +- Display all the sections present in a PE file: + +`readpe --all-sections {{path/to/executable}}` + +- Display a specific header from a PE file: + +`readpe --header {{dos|coff|optional}} {{path/to/executable}}` + +- List all imported functions: + +`readpe --imports {{path/to/executable}}` + +- List all exported functions: + +`readpe --exports {{path/to/executable}}`