mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 14:55:00 +00:00
Added extra734 check S3 bucket encryption
This commit is contained in:
35
checks/check_extra734
Normal file
35
checks/check_extra734
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Prowler - the handy cloud security tool (copyright 2018) by Toni de la Fuente
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||||
|
# use this file except in compliance with the License. You may obtain a copy
|
||||||
|
# of the License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software distributed
|
||||||
|
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
||||||
|
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations under the License.
|
||||||
|
CHECK_ID_extra734="7.34"
|
||||||
|
CHECK_TITLE_extra734="[extra734] Check if S3 buckets have default encryption (SSE) enabled (Not Scored) (Not part of CIS benchmark)"
|
||||||
|
CHECK_SCORED_extra734="NOT_SCORED"
|
||||||
|
CHECK_TYPE_extra734="EXTRA"
|
||||||
|
CHECK_ALTERNATE_check734="extra734"
|
||||||
|
|
||||||
|
extra734(){
|
||||||
|
LIST_OF_BUCKETS=$($AWSCLI s3api list-buckets $PROFILE_OPT --query Buckets[*].Name --output text|xargs -n1)
|
||||||
|
if [[ $LIST_OF_BUCKETS ]]; then
|
||||||
|
for bucket in $LIST_OF_BUCKETS;do
|
||||||
|
RESULT=$(echo $bucket $($AWSCLI s3api get-bucket-encryption $PROFILE_OPT --bucket $bucket --query ServerSideEncryptionConfiguration.Rules[].ApplyServerSideEncryptionByDefault[].SSEAlgorithm --output text 2>&1 | grep -v ServerSideEncryptionConfigurationNotFoundError))
|
||||||
|
echo "$RESULT" | while read RBUCKET SSEALG; do
|
||||||
|
if [[ $SSEALG ]]; then
|
||||||
|
textPass "Bucket $RBUCKET has SSE enabled with algorithm $SSEALG"
|
||||||
|
else
|
||||||
|
textFail "Bucket $RBUCKET has Server Side Encryption disabled!"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
else
|
||||||
|
textInfo "No S3 Buckets found"
|
||||||
|
fi
|
||||||
|
}
|
||||||
@@ -15,4 +15,4 @@ GROUP_ID[7]='extras'
|
|||||||
GROUP_NUMBER[7]='7.0'
|
GROUP_NUMBER[7]='7.0'
|
||||||
GROUP_TITLE[7]='Extras - [extras] **********************************************'
|
GROUP_TITLE[7]='Extras - [extras] **********************************************'
|
||||||
GROUP_RUN_BY_DEFAULT[7]='Y' # run it when execute_all is called
|
GROUP_RUN_BY_DEFAULT[7]='Y' # run it when execute_all is called
|
||||||
GROUP_CHECKS[7]='extra71,extra72,extra73,extra74,extra75,extra76,extra77,extra78,extra79,extra710,extra711,extra712,extra713,extra714,extra715,extra716,extra717,extra718,extra719,extra720,extra721,extra722,extra723,extra724,extra725,extra726,extra727,extra728,extra729,extra730,extra731,extra732,extra733'
|
GROUP_CHECKS[7]='extra71,extra72,extra73,extra74,extra75,extra76,extra77,extra78,extra79,extra710,extra711,extra712,extra713,extra714,extra715,extra716,extra717,extra718,extra719,extra720,extra721,extra722,extra723,extra724,extra725,extra726,extra727,extra728,extra729,extra730,extra731,extra732,extra733,extra734'
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ GROUP_ID[9]='gdpr'
|
|||||||
GROUP_NUMBER[9]='9.0'
|
GROUP_NUMBER[9]='9.0'
|
||||||
GROUP_TITLE[9]='GDPR Readiness - WORK IN PROGRESS!! - [gdpr] *******************'
|
GROUP_TITLE[9]='GDPR Readiness - WORK IN PROGRESS!! - [gdpr] *******************'
|
||||||
GROUP_RUN_BY_DEFAULT[9]='N' # run it when execute_all is called
|
GROUP_RUN_BY_DEFAULT[9]='N' # run it when execute_all is called
|
||||||
GROUP_CHECKS[9]='extra718,extra725,extra727,check12,check113,check114,extra71,extra731,extra732,extra733,check25,check39,check21,check22,check23,check24,check26,check27,check35,extra726,extra714,extra715,extra717,extra719,extra720,extra721,extra722,check43,check25,extra714,extra729'
|
GROUP_CHECKS[9]='extra718,extra725,extra727,check12,check113,check114,extra71,extra731,extra732,extra733,check25,check39,check21,check22,check23,check24,check26,check27,check35,extra726,extra714,extra715,extra717,extra719,extra720,extra721,extra722,check43,check25,extra714,extra729,extra734'
|
||||||
|
|
||||||
# Resources:
|
# Resources:
|
||||||
# https://d1.awsstatic.com/whitepapers/compliance/GDPR_Compliance_on_AWS.pdf
|
# https://d1.awsstatic.com/whitepapers/compliance/GDPR_Compliance_on_AWS.pdf
|
||||||
|
|||||||
Reference in New Issue
Block a user