System Enumeration
Last 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