mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-17 09:49:28 +00:00
Update cheatsheets
This commit is contained in:
33
linux/readpe
Normal file
33
linux/readpe
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# readpe
|
||||
|
||||
> Displays information about PE files.
|
||||
> More information: <https://manned.org/readpe>.
|
||||
|
||||
- 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}}`
|
||||
Reference in New Issue
Block a user