Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Capital argument
  • Loading branch information
Meatballs1 authored Feb 13, 2025
commit 0a164a3dd17d3b269bfacb26c976b7edeab024b2
2 changes: 1 addition & 1 deletion unix-privesc-check
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ if [ -r "$SHADOW" ]; then
while read LINE
do
USERNAME=`echo "$LINE" | cut -f 1 -d ":"`
STATUS=`passwd -s $USERNAME | awk '{print $2}'`
STATUS=`passwd -S $USERNAME | awk '{print $2}'`
if [ "$STATUS" = "NP" ]; then
echo "[UPC015] WARNING: User $USERNAME doesn't have a password"
fi
Expand Down