mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
32 lines
1.1 KiB
Bash
32 lines
1.1 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_check112="1.12"
|
|
CHECK_TITLE_check112="[check112] Ensure no root account access key exists (Scored)"
|
|
CHECK_SCORED_check112="SCORED"
|
|
CHECK_ALTERNATE_check112="check112"
|
|
|
|
check112(){
|
|
# "Ensure no root account access key exists (Scored)"
|
|
# ensure the access_key_1_active and access_key_2_active fields are set to FALSE.
|
|
ROOTKEY1=$(cat $TEMP_REPORT_FILE |grep root_account|awk -F',' '{ print $9 }')
|
|
ROOTKEY2=$(cat $TEMP_REPORT_FILE |grep root_account|awk -F',' '{ print $14 }')
|
|
if [ "$ROOTKEY1" == "false" ];then
|
|
textPass "No access key 1 found for root"
|
|
else
|
|
textFail "Found access key 1 for root "
|
|
fi
|
|
if [ "$ROOTKEY2" == "false" ];then
|
|
textPass "No access key 2 found for root"
|
|
else
|
|
textFail "Found access key 2 for root "
|
|
fi
|
|
}
|