Difference between revisions of "Linux Privilege Escalation"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "== Check Kernel version == <syntaxhighlight lang="bash"> uname -r cat /proc/version dmesg | grep Linux </syntaxhighlight>") Tag: visualeditor |
Rafahsolis (talk | contribs) m Tag: visualeditor |
||
| Line 1: | Line 1: | ||
| − | == Check Kernel version == | + | ==Check Kernel version== |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
uname -r | uname -r | ||
| Line 5: | Line 5: | ||
dmesg | grep Linux | dmesg | grep Linux | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| + | |||
| + | == Privilege checks == | ||
| + | [[:File:Linuxprivchecker.tar.gz|linuxprivchecker.py]] | ||
Revision as of 08:54, 9 May 2019
Check Kernel version
uname -r
cat /proc/version
dmesg | grep Linux