mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-11 18:50:50 +00:00
Utilities/readelf: Add support for printing the content of sections
This commit is contained in:
parent
4055c393fc
commit
b509d8a2f7
Notes:
sideshowbarker
2024-07-17 20:18:56 +09:00
Author: https://github.com/BertalanD
Commit: b509d8a2f7
Pull-request: https://github.com/SerenityOS/serenity/pull/12049
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/IdanHo
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/bgianfo ✅
Reviewed-by: https://github.com/linusg ✅
2 changed files with 19 additions and 2 deletions
|
@ -5,7 +5,7 @@ readelf
|
|||
## Synopsis
|
||||
|
||||
```sh
|
||||
$ readelf [--all] [--file-header] [--program-headers] [--section-headers] [--headers] [--syms] [--dyn-syms] [--dynamic] [--notes] [--relocs] [--unwind] [--checksec] <path>
|
||||
$ readelf [--all] [--file-header] [--program-headers] [--section-headers] [--headers] [--syms] [--dyn-syms] [--dynamic] [--notes] [--relocs] [--unwind] [--checksec] [--string-dump section-name] <path>
|
||||
```
|
||||
|
||||
## Options:
|
||||
|
@ -24,6 +24,7 @@ $ readelf [--all] [--file-header] [--program-headers] [--section-headers] [--hea
|
|||
* `-r`, `--relocs`: Display relocations
|
||||
* `-u`, `--unwind`: Display unwind info
|
||||
* `-c`, `--checksec`: Display security hardening info
|
||||
* `-p section-name`, `--string-dump section-name`: Display the contents of a section as strings
|
||||
|
||||
## Arguments:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue