mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
checksec: add page (#10638)
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
parent
221c4481f2
commit
b5db16bf55
1 changed files with 20 additions and 0 deletions
20
pages/common/checksec.md
Normal file
20
pages/common/checksec.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# checksec
|
||||
|
||||
> Check security properties of executables.
|
||||
> More information: <https://github.com/slimm609/checksec.sh>.
|
||||
|
||||
- List security properties of an executable binary file:
|
||||
|
||||
`checksec --file={{path/to/binary}}`
|
||||
|
||||
- List security properties recursively of all executable files in a directory:
|
||||
|
||||
`checksec --dir={{path/to/directory}}`
|
||||
|
||||
- List security properties of a process:
|
||||
|
||||
`checksec --proc={{pid}}`
|
||||
|
||||
- List security properties of the running kernel:
|
||||
|
||||
`checksec --kernel`
|
Loading…
Add table
Reference in a new issue