forked from webpwnized/gcp-audit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcis-4.1.1-compute-instance-default-service-account.sh
executable file
·140 lines (119 loc) · 4.42 KB
/
cis-4.1.1-compute-instance-default-service-account.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/bin/bash
source functions.inc
declare SEPARATOR="---------------------------------------------------------------------------------";
declare PROJECT_IDS="";
declare DEBUG="False";
declare CSV="False";
declare ICH="False";
declare HELP=$(cat << EOL
$0 [-p, --project PROJECT] [-c, --csv] [-i, --include-column-headers] [-d, --debug] [-h, --help]
EOL
);
for arg in "$@"; do
shift
case "$arg" in
"--help") set -- "$@" "-h" ;;
"--debug") set -- "$@" "-d" ;;
"--csv") set -- "$@" "-c" ;;
"--include-column-headers") set -- "$@" "-i" ;;
"--project") set -- "$@" "-p" ;;
*) set -- "$@" "$arg"
esac
done
while getopts "hdcip:" option
do
case "${option}"
in
p)
PROJECT_IDS=${OPTARG};;
d)
DEBUG="True";;
c)
CSV="True";;
i)
ICH="True";;
h)
echo $HELP;
exit 0;;
esac;
done;
if [[ $PROJECT_IDS == "" ]]; then
declare PROJECT_IDS=$(gcloud projects list --format="flattened(PROJECT_ID)" | grep project_id | cut -d " " -f 2);
fi;
if [[ $DEBUG == "True" ]]; then
echo "Projects: $PROJECT_IDS";
echo "";
fi;
if [[ $ICH == "True" ]]; then
echo "\"PROJECT_ID\", \"PROJECT_NAME\", \"PROJECT_OWNER\", \"PROJECT_APPLICATION\", \"INSTANCE_NAME\", \"SERVICE_ACCOUNTS\", \"IS_SA_VIOLATION\", \"IS_ROLE_VIOLATION\", \"ROLES\", \"ROLES_STATUS_MESSAGE\", \"SERVICE_ACCOUNT_STATUS_MESSAGE\", \"SCOPES\"";
fi;
for PROJECT_ID in $PROJECT_IDS; do
gcloud config set project $PROJECT_ID 2>/dev/null;
if ! api_enabled compute.googleapis.com; then
if [[ $CSV != "True" ]]; then
echo "Compute Engine API is not enabled on Project $PROJECT_ID";
fi;
continue;
fi;
declare INSTANCES=$( gcloud compute instances list --quiet --format="json");
if [[ $DEBUG == "True" ]]; then
echo "Instances (JSON): $INSTANCES";
echo "";
fi;
if [[ $INSTANCES != "[]" ]]; then
PROJECT_DETAILS=$(gcloud projects describe $PROJECT_ID --format="json");
PROJECT_NAME=$(echo $PROJECT_DETAILS | jq -rc '.name');
PROJECT_APPLICATION=$(echo $PROJECT_DETAILS | jq -rc '.labels.app');
PROJECT_OWNER=$(echo $PROJECT_DETAILS | jq -rc '.labels.adid');
echo $INSTANCES | jq -rc '.[]' | while IFS='' read -r INSTANCE;do
if [[ $DEBUG == "True" ]]; then
echo "Project Name: $PROJECT_NAME";
echo "Project Application: $PROJECT_APPLICATION";
echo "Project Owner: $PROJECT_OWNER";
echo "Instance (JSON): $INSTANCE";
fi;
INSTANCE_NAME=$(echo $INSTANCE | jq -rc '.name');
SERVICE_ACCOUNTS=$(echo $INSTANCE | jq -rc '.serviceAccounts[].email');
IS_GKE_NODE=$(echo $INSTANCE | jq '.labels' | jq 'has("goog-gke-node")');
SCOPES=$(echo $INSTANCE | jq -rc '.serviceAccounts[].scopes[]');
ROLES=$(gcloud projects get-iam-policy $PROJECT_ID --flatten="bindings[].members" --filter="bindings.members:$SERVICE_ACCOUNTS" --format="json" | jq '.[]' | jq '.bindings.role');
# Determine if the default service account is in use
if [[ $SERVICE_ACCOUNTS =~ [-]compute[@]developer[.]gserviceaccount[.]com && $IS_GKE_NODE == "false" ]]; then
IS_SA_VIOLATION="True";
SERVICE_ACCOUNT_STATUS_MESSAGE="VIOLATION: Default Service Account detected";
else
IS_SA_VIOLATION="False";
SERVICE_ACCOUNT_STATUS_MESSAGE="NOTICE: Custom Service Account Detected";
fi;
if [[ $ROLES =~ editor ]]; then
IS_ROLE_VIOLATION="True";
ROLES_STATUS_MESSAGE="VIOLATION: Service account has Editor permission";
else
IS_ROLE_VIOLATION="False";
ROLES_STATUS_MESSAGE="NOTICE: Service account has custom permissions";
fi;
if [[ $CSV != "True" ]]; then
echo "Project ID: $PROJECT_ID";
echo "Project Name: $PROJECT_NAME";
echo "Project Application: $PROJECT_APPLICATION";
echo "Project Owner: $PROJECT_OWNER";
echo "Instance Name: $INSTANCE_NAME";
echo "Service Accounts: $SERVICE_ACCOUNTS";
echo "Status: $SERVICE_ACCOUNT_STATUS_MESSAGE";
echo "Google OAuth Scopes:";
echo $SCOPES;
echo "Roles: $ROLES";
echo "$ROLES_STATUS_MESSAGE";
echo "";
else
echo "\"$PROJECT_ID\", \"$PROJECT_NAME\", \"$PROJECT_OWNER\", \"$PROJECT_APPLICATION\", \"$INSTANCE_NAME\", \"$SERVICE_ACCOUNTS\", \"$IS_SA_VIOLATION\", \"$IS_ROLE_VIOLATION\", \"$ROLES\", \"$ROLES_STATUS_MESSAGE\", \"$SERVICE_ACCOUNT_STATUS_MESSAGE\", \"$SCOPES\"";
fi;
done;
else
if [[ $CSV != "True" ]]; then
echo "No instances found for project $PROJECT_ID";
echo "";
fi;
fi;
sleep 0.5;
done;