Quick answer

Beyond SUID/SGID, LinPEAS reports writable files and directories, files with ACLs, ld.so misconfigurations, writable init/service files, and — a high-value check — writable root-owned executables you can modify.

Where it appears#

These checks are in the Files with Interesting Permissions section (interesting_perms_files), with more file findings in Other Interesting Files (interesting_files).

How to read it#

  • A writable root-owned executable that root later runs is a direct path.
  • ACLs can grant you access that standard permissions hide — check them explicitly.
  • ld.so misconfigurations (writable config or library paths) can hijack privileged programs.

Verify it yourself#

Reproduce the permission checks
find / -xdev -type f -perm -0002 ! -type l 2>/dev/null   # world-writable files
getfacl -R /etc 2>/dev/null | grep -B2 $(whoami)          # ACLs granting you access
cat /etc/ld.so.conf.d/*.conf

Sources & references

  1. linPEAS README
  2. PEASS-ng release — reviewed 20260908-dffb9496
  3. HackTricks: Linux privilege escalation