Update README.md

This commit is contained in:
Joe Totes
2022-10-12 12:17:08 -04:00
committed by GitHub
parent 0d825e436f
commit 5a9a257057

View File

@@ -1425,6 +1425,9 @@ find / -perm -u=s -type f 2>/dev/null
# List All Users on a System
cat /etc/passwd
# Search Passwords
grep -irE '(password|pwd|pass)[[:space:]]*=[[:space:]]*[[:alpha:]]+' *
# List All Users on a System (cleaner, only users)
awk F: { print $1} /etc/passwd