diff --git a/pages/common/checksec.md b/pages/common/checksec.md new file mode 100644 index 000000000..c4ec98235 --- /dev/null +++ b/pages/common/checksec.md @@ -0,0 +1,20 @@ +# checksec + +> Check security properties of executables. +> More information: . + +- 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`