mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-11 07:15:15 +00:00
32 lines
1.8 KiB
Plaintext
32 lines
1.8 KiB
Plaintext
CHECK_ID_extra716="7.16"
|
|
CHECK_TITLE_extra716="Check if Elasticsearch Service domains allow open access (Not Scored) (Not part of CIS benchmark)"
|
|
CHECK_SCORED_extra716="NOT_SCORED"
|
|
CHECK_ALTERNATE_check716="extra716"
|
|
|
|
extra716(){
|
|
# "Check if Elasticsearch Service domains allow open access (Not Scored) (Not part of CIS benchmark)"
|
|
for regx in $REGIONS; do
|
|
LIST_OF_DOMAINS=$($AWSCLI es list-domain-names $PROFILE_OPT --region $regx --query DomainNames --output text)
|
|
if [[ $LIST_OF_DOMAINS ]]; then
|
|
for domain in $LIST_OF_DOMAINS;do
|
|
CHECK_IF_MEMBER_OF_VPC=$($AWSCLI es describe-elasticsearch-domain-config --domain-name $domain $PROFILE_OPT --region $regx --query DomainConfig.VPCOptions.Options.VPCId --output text|grep -v ^None)
|
|
if [[ ! $CHECK_IF_MEMBER_OF_VPC ]];then
|
|
TEMP_POLICY_FILE=$(mktemp -t prowler-${ACCOUNT_NUM}-es-domain.policy.XXXXXXXXXX)
|
|
$AWSCLI es describe-elasticsearch-domain-config --domain-name $domain $PROFILE_OPT --region $regx --query DomainConfig.AccessPolicies.Options --output text > $TEMP_POLICY_FILE 2> /dev/null
|
|
# check if the policy has Principal as *
|
|
CHECK_ES_DOMAIN_ALLUSERS_POLICY=$(cat $TEMP_POLICY_FILE | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}' | awk '/Principal/ && !skip { print } { skip = /Deny/} '|grep \"Principal|grep \*)
|
|
if [[ $CHECK_ES_DOMAIN_ALLUSERS_POLICY ]];then
|
|
textFail "$regx: $domain policy \"may\" allow Anonymous users to perform actions (Principal: \"*\")" "$regx"
|
|
else
|
|
textPass "$regx: $domain is not open" "$regx"
|
|
fi
|
|
else
|
|
textPass "$regx: $domain is in a VPC" "$regx"
|
|
fi
|
|
done
|
|
fi
|
|
textInfo "$regx: No Elasticsearch Service domain found" "$regx"
|
|
rm -fr $TEMP_POLICY_FILE
|
|
done
|
|
}
|