mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-11 07:15:15 +00:00
65 lines
3.1 KiB
Bash
65 lines
3.1 KiB
Bash
#!/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_extra77="7.7"
|
|
CHECK_TITLE_extra77="[extra77] Ensure there are no ECR repositories set as Public (Not Scored) (Not part of CIS benchmark)"
|
|
CHECK_SCORED_extra77="NOT_SCORED"
|
|
CHECK_TYPE_extra77="EXTRA"
|
|
CHECK_SEVERITY_extra77="Critical"
|
|
CHECK_ALTERNATE_extra707="extra77"
|
|
CHECK_ALTERNATE_check77="extra77"
|
|
CHECK_ALTERNATE_check707="extra77"
|
|
CHECK_SERVICENAME_extra77="ecr"
|
|
|
|
extra77(){
|
|
# "Ensure there are no ECR repositories set as Public (Not Scored) (Not part of CIS benchmark)"
|
|
for region in $REGIONS; do
|
|
LIST_ECR_REPOS=$($AWSCLI ecr describe-repositories $PROFILE_OPT --region $region --query "repositories[*].[repositoryName]" --output text 2>&1)
|
|
if [[ $(echo "$LIST_ECR_REPOS" | grep AccessDenied) ]]; then
|
|
textFail "Access Denied Trying to describe ECR repositories"
|
|
continue
|
|
fi
|
|
if [[ $(echo "$LIST_ECR_REPOS" | grep SubscriptionRequiredException) ]]; then
|
|
textFail "Subscription Required Exception trying to describe ECR repositories"
|
|
continue
|
|
fi
|
|
if [[ ! -z "$LIST_ECR_REPOS" ]]; then
|
|
for repo in $LIST_ECR_REPOS; do
|
|
TEMP_POLICY_FILE=$(mktemp -t prowler-${ACCOUNT_NUM}-ecr-repo.policy.XXXXXXXXXX)
|
|
$AWSCLI ecr get-repository-policy $PROFILE_OPT --region $region --repository-name $repo --query "policyText" --output text > $TEMP_POLICY_FILE 2>&1
|
|
if [[ $(grep AccessDenied $TEMP_POLICY_FILE) ]]; then
|
|
textFail "$region: $repo Access Denied for get-repository-policy"
|
|
rm -f $TEMP_POLICY_FILE
|
|
continue
|
|
fi
|
|
# https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policies.html - "By default, only the repository owner has access to a repository."
|
|
if [[ $(grep RepositoryPolicyNotFoundException $TEMP_POLICY_FILE) ]]; then
|
|
textPass "$region: $repo is not open" "$region"
|
|
rm -f $TEMP_POLICY_FILE
|
|
continue
|
|
fi
|
|
# check if the policy has Principal as *
|
|
CHECK_ECR_REPO_ALLUSERS_POLICY=$(cat $TEMP_POLICY_FILE | jq '.Statement[]|select(.Effect=="Allow" and (((.Principal|type == "object") and .Principal.AWS == "*") or ((.Principal|type == "string") and .Principal == "*")))')
|
|
if [[ $CHECK_ECR_REPO_ALLUSERS_POLICY ]]; then
|
|
textFail "$region: $repo policy \"may\" allow Anonymous users to perform actions (Principal: \"*\")" "$region"
|
|
else
|
|
textPass "$region: $repo is not open" "$region"
|
|
fi
|
|
rm -f $TEMP_POLICY_FILE
|
|
done
|
|
else
|
|
textInfo "$region: No ECR repositories found" "$region"
|
|
fi
|
|
done
|
|
}
|