> For the complete documentation index, see [llms.txt](https://intrusionz3r0.gitbook.io/intrusionz3r0/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://intrusionz3r0.gitbook.io/intrusionz3r0/linux-penetration-testing/privilege-escalation.md).

# Privilege Escalation

#### Temporary notes it will be removed later

```sh
#Process
ss -lntp
ps -ef --forest
cat /etc/fstab #you cannot see the another user process (hidepid=2)
ls /proc

#Configuration files
ls /etc/nginx/sites-enabled/

#Enumeration User process
find / -user dante 2>/dev/null | grep -vE "proc|run|sys"
find / -user group 2>/dev/null | grep -vE "proc|run|sys"

```
