Files
oscp/Linux/Perm.md
T
2025-11-21 17:17:42 +01:00

6 lines
72 B
Markdown

Find SUID marked files
```sh
find / -perm -u=s -type f 2>/dev/null
```