mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 04:51:51 +00:00
88 lines
4.1 KiB
Bash
88 lines
4.1 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Prowler - the handy cloud security tool (copyright 2019) 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_check26="2.6"
|
|
CHECK_TITLE_check26="[check26] Ensure S3 bucket access logging is enabled on the CloudTrail S3 bucket"
|
|
CHECK_SCORED_check26="SCORED"
|
|
CHECK_CIS_LEVEL_check26="LEVEL1"
|
|
CHECK_SEVERITY_check26="Medium"
|
|
CHECK_ASFF_TYPE_check26="Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark"
|
|
CHECK_ASFF_RESOURCE_TYPE_check26="AwsS3Bucket"
|
|
CHECK_ALTERNATE_check206="check26"
|
|
CHECK_SERVICENAME_check26="s3"
|
|
CHECK_RISK_check26='Server access logs can assist you in security and access audits; help you learn about your customer base; and understand your Amazon S3 bill.'
|
|
CHECK_REMEDIATION_check26='Ensure that S3 buckets have Logging enabled. CloudTrail data events can be used in place of S3 bucket logging. If that is the case; this finding can be considered a false positive.'
|
|
CHECK_DOC_check26='https://docs.aws.amazon.com/AmazonS3/latest/dev/security-best-practices.html'
|
|
CHECK_CAF_EPIC_check26='Logging and Monitoring'
|
|
|
|
check26(){
|
|
|
|
for regx in $REGIONS
|
|
do
|
|
TRAILS_DETAILS=$($AWSCLI cloudtrail describe-trails $PROFILE_OPT --region $regx --query 'trailList[*].{Name:Name, HomeRegion:HomeRegion, Multiregion:IsMultiRegionTrail, BucketName:S3BucketName}' --output text 2>&1)
|
|
if [[ $(echo "$TRAILS_DETAILS" | grep AccessDenied) ]]; then
|
|
textInfo "$regx: Access Denied trying to describe trails" "$regx"
|
|
continue
|
|
fi
|
|
if [[ $TRAILS_DETAILS ]]
|
|
then
|
|
for REGION_TRAIL in "${TRAILS_DETAILS}"
|
|
do
|
|
while read -r TRAIL_BUCKET TRAIL_HOME_REGION IS_MULTIREGION TRAIL_NAME
|
|
do
|
|
if [[ ! "${TRAIL_BUCKET}" ]]
|
|
then
|
|
if [[ "${IS_MULTIREGION}" == "True" ]]
|
|
then
|
|
textFail "$regx: Multiregion trail ${TRAIL_NAME} configured from region ${TRAIL_HOME_REGION} does not publish to S3" "$regx" "$TRAIL_NAME"
|
|
else
|
|
textFail "$regx: Single region trail ${TRAIL_NAME} does not publish to S3" "$regx" "$TRAIL_NAME"
|
|
fi
|
|
continue
|
|
fi
|
|
|
|
BUCKET_LOCATION=$($AWSCLI s3api get-bucket-location $PROFILE_OPT --region $regx --bucket $TRAIL_BUCKET --output text 2>&1)
|
|
if [[ $(echo "$BUCKET_LOCATION" | grep AccessDenied) ]]
|
|
then
|
|
textInfo "$regx: Trail ${TRAIL_NAME} with home region ${TRAIL_HOME_REGION} Access Denied getting bucket location for bucket $TRAIL_BUCKET" "$regx" "$TRAIL_NAME"
|
|
continue
|
|
fi
|
|
if [[ $BUCKET_LOCATION == "None" ]]; then
|
|
BUCKET_LOCATION="us-east-1"
|
|
fi
|
|
if [[ $BUCKET_LOCATION == "EU" ]]; then
|
|
BUCKET_LOCATION="eu-west-1"
|
|
fi
|
|
|
|
CLOUDTRAILBUCKET_LOGENABLED=$($AWSCLI s3api get-bucket-logging --bucket $TRAIL_BUCKET $PROFILE_OPT --region $BUCKET_LOCATION --query 'LoggingEnabled.TargetBucket' --output text 2>&1)
|
|
if [[ $(echo "$CLOUDTRAILBUCKET_LOGENABLED" | grep AccessDenied) ]]; then
|
|
textInfo "$regx: Trail $TRAIL_NAME Access Denied getting bucket logging for $TRAIL_BUCKET" "$regx" "$TRAIL_NAME"
|
|
continue
|
|
fi
|
|
|
|
if [[ $CLOUDTRAILBUCKET_LOGENABLED != "None" ]]; then
|
|
textPass "$regx: Trail $TRAIL_NAME S3 bucket access logging is enabled for $TRAIL_BUCKET" "$regx" "$TRAIL_NAME"
|
|
else
|
|
textFail "$regx: Trail $TRAIL_NAME S3 bucket access logging is not enabled for $TRAIL_BUCKET" "$regx" "$TRAIL_NAME"
|
|
fi
|
|
|
|
|
|
done <<< "${REGION_TRAIL}"
|
|
done
|
|
else
|
|
textPass "$regx: No trails found in the region" "$regx"
|
|
fi
|
|
|
|
done
|
|
}
|