mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 23:05:05 +00:00
49 lines
2.5 KiB
Bash
49 lines
2.5 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_extra7170="7.170"
|
|
CHECK_TITLE_extra7170="[extra7170] Check if internet-facing application load balancers are protected by AWS Shield Advanced"
|
|
CHECK_SCORED_extra7170="NOT_SCORED"
|
|
CHECK_CIS_LEVEL_extra7170="EXTRA"
|
|
CHECK_SEVERITY_extra7170="Medium"
|
|
CHECK_ASFF_RESOURCE_TYPE_extra7170="AwsElasticLoadBalancingV2LoadBalancer"
|
|
CHECK_ALTERNATE_check7170="extra7170"
|
|
CHECK_SERVICENAME_extra7170="shield"
|
|
CHECK_RISK_extra7170='AWS Shield Advanced provides expanded DDoS attack protection for your resources'
|
|
CHECK_REMEDIATION_extra7170='Add as a protected resource in AWS Shield Advanced.'
|
|
CHECK_DOC_extra7170='https://docs.aws.amazon.com/waf/latest/developerguide/configure-new-protection.html'
|
|
CHECK_CAF_EPIC_extra7170='Infrastructure security'
|
|
|
|
extra7170() {
|
|
if [[ "$($AWSCLI $PROFILE_OPT shield get-subscription-state --output text)" == "ACTIVE" ]]; then
|
|
for regx in $REGIONS; do
|
|
LIST_OF_APPLICATION_LOAD_BALANCERS=$($AWSCLI elbv2 describe-load-balancers $PROFILE_OPT --region $regx --query 'LoadBalancers[?Type == `application` && Scheme == `internet-facing`].[LoadBalancerName,LoadBalancerArn]' --output text)
|
|
if [[ $LIST_OF_APPLICATION_LOAD_BALANCERS ]]; then
|
|
while read -r alb; do
|
|
ALB_NAME=$(echo $alb | awk '{ print $1; }')
|
|
ALB_ARN=$(echo $alb | awk '{ print $2; }')
|
|
if $AWSCLI $PROFILE_OPT shield describe-protection --resource-arn $ALB_ARN >/dev/null 2>&1; then
|
|
textPass "$regx: ALB $ALB_NAME is protected by AWS Shield Advanced" "$regx" "$ALB_NAME"
|
|
else
|
|
textFail "$regx: ALB $ALB_NAME is not protected by AWS Shield Advanced" "$regx" "$ALB_NAME"
|
|
fi
|
|
done <<<"$LIST_OF_APPLICATION_LOAD_BALANCERS"
|
|
else
|
|
textInfo "$regx: no application load balancers found" "$regx"
|
|
fi
|
|
done
|
|
else
|
|
textInfo "No AWS Shield Advanced subscription found. Skipping check."
|
|
fi
|
|
}
|