diff --git a/docs/commands/index.md b/docs/commands/index.md index 1f37c9825a5..e8f841e5c9f 100644 --- a/docs/commands/index.md +++ b/docs/commands/index.md @@ -155,6 +155,7 @@ - [kchecksec](kchecksec/kchecksec.md) Checks for kernel hardening configuration options. - [kcmdline](kcmdline/kcmdline.md) Return the kernel commandline (/proc/cmdline). - [kconfig](kconfig/kconfig.md) Outputs the kernel config (requires CONFIG_IKCONFIG). +- [klookup](klookup/klookup.md) Lookup kernel symbols. - [kversion](kversion/kversion.md) Outputs the kernel version (/proc/version). - [slab](slab/slab.md) Prints information about the slab allocator diff --git a/docs/commands/klookup/klookup.md b/docs/commands/klookup/klookup.md new file mode 100644 index 00000000000..a26520a9623 --- /dev/null +++ b/docs/commands/klookup/klookup.md @@ -0,0 +1,27 @@ + + + + +# klookup + +## Description + + +Lookup kernel symbols. +## Usage: + + +```bash +usage: klookup [-h] [symbol] +``` +## Positional Arguments + +|Positional Argument|Help| +| :--- | :--- | +|`symbol`| Symbol or address to lookup.| + +## Optional Arguments + +|Short|Long|Default|Help| +| :--- | :--- | :--- | :--- | +|`-h`|`--help`||show this help message and exit|