mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
32 lines
1.3 KiB
Bash
32 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Prowler - the handy cloud security tool (c) by Toni de la Fuente
|
|
#
|
|
# This Prowler check is licensed under a
|
|
# Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
|
|
#
|
|
# You should have received a copy of the license along with this
|
|
# work. If not, see <http://creativecommons.org/licenses/by-nc-sa/4.0/>.
|
|
|
|
CHECK_ID_check12="1.2,1.02"
|
|
CHECK_TITLE_check12="[check12] Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)"
|
|
CHECK_SCORED_check12="SCORED"
|
|
CHECK_ALTERNATE_check102="check12"
|
|
|
|
check12(){
|
|
# "Ensure multi-factor authentication (MFA) is enabled for all IAM users that have a console password (Scored)"
|
|
# List users with password enabled
|
|
COMMAND12_LIST_USERS_WITH_PASSWORD_ENABLED=$(cat $TEMP_REPORT_FILE|awk -F, '{ print $1,$4 }' |grep true | awk '{ print $1 }')
|
|
COMMAND12=$(
|
|
for i in $COMMAND12_LIST_USERS_WITH_PASSWORD_ENABLED; do
|
|
cat $TEMP_REPORT_FILE|awk -F, '{ print $1,$8 }' |grep "$i " |grep false | awk '{ print $1 }'
|
|
done)
|
|
if [[ $COMMAND12 ]]; then
|
|
for u in $COMMAND12; do
|
|
textFail "User $u has Password enabled but MFA disabled"
|
|
done
|
|
else
|
|
textPass "No users found with Password enabled and MFA disabled"
|
|
fi
|
|
}
|