From 5a9a257057ec464740e47400ea7fac73d8b3b811 Mon Sep 17 00:00:00 2001 From: Joe Totes <59018247+Totes5706@users.noreply.github.com> Date: Wed, 12 Oct 2022 12:17:08 -0400 Subject: [PATCH] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index ddb3c3f..2a96df8 100644 --- a/README.md +++ b/README.md @@ -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