System Enumeration
Get kernel version
uname -acat /proc/version
cat /etc/issueView the architecture
lscpuView processes
ps aux
ps aux | grep rootLast updated
uname -acat /proc/version
cat /etc/issueIt can be useful to know the hostname in CTF situations as it can relate to the required exploit to escalate privileges
lscpuSome exploits may require multiple threads or cores, if the machine doesn't have the required amount then the exploit won't work
ps aux
ps aux | grep rootThey will be in the order that they were issued
Last updated