531b248142656846edcbf0690b22b3d91012e712
[integration.git] / test / security / check_for_nonssl_endpoints.sh
1 #!/usr/bin/env bash
2
3 #   COPYRIGHT NOTICE STARTS HERE
4 #
5 #   Copyright 2019 Samsung Electronics Co., Ltd.
6 #
7 #   Licensed under the Apache License, Version 2.0 (the "License");
8 #   you may not use this file except in compliance with the License.
9 #   You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #   Unless required by applicable law or agreed to in writing, software
14 #   distributed under the License is distributed on an "AS IS" BASIS,
15 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #   See the License for the specific language governing permissions and
17 #   limitations under the License.
18 #
19 #   COPYRIGHT NOTICE ENDS HERE
20
21 # Check all ports exposed outside of kubernetes cluster looking for non-SSL
22 # endpoints.
23 #
24 # Dependencies:
25 #     nmap
26 #     kubectl + config
27 #
28 # Return value: Number of discovered non-SSL ports
29 # Output: List of pods exposing non-SSL endpoints
30 #
31
32 usage() {
33         cat <<EOF
34 Usage: $(basename $0) <k8s-namespace> [-l <list of non-SSL endpoints expected to fail this test>]
35     -l: list of non-SSL endpoints expected to fail this test
36 EOF
37         exit ${1:-0}
38 }
39
40 #Prerequisities commands list
41 REQ_APPS=(kubectl nmap awk column sort paste grep wc mktemp sed cat)
42
43 # Check for prerequisites apps
44 for cmd in "${REQ_APPS[@]}"; do
45         if ! [ -x "$(command -v "$cmd")" ]; then
46                 echo "Error: command $cmd is not installed"
47                 exit 1
48         fi
49 done
50
51 if [ "$#" -lt 1 ]; then
52         usage 1
53 fi
54
55 K8S_NAMESPACE=$1
56 FILTERED_PORTS_LIST=$(mktemp nonssl_endpoints_XXXXXX)
57 XF_RAW_FILE_PATH=$(mktemp raw_filtered_nonssl_endpoints_XXXXXX)
58
59 strip_white_list() {
60         if [ ! -f $XF_FILE_PATH ]; then
61                 echo "File not found"
62                 usage 1
63         fi
64         grep -o '^[^#]*' $XF_FILE_PATH > $XF_RAW_FILE_PATH
65 }
66
67 ### getopts
68 while :
69 do
70         case $2 in
71                 -h|--help|help) usage ;;
72                 -l) XF_FILE_PATH=$3; strip_white_list; shift ;;
73                 -*) usage 1 ;;
74                 *) break ;;
75         esac
76 done
77
78 # Get both values on single call as this may get slow
79 PORTS_SVCS=`kubectl get svc --namespace=$K8S_NAMESPACE -o go-template='{{range $item := .items}}{{range $port := $item.spec.ports}}{{if .nodePort}}{{.nodePort}}{{"\t"}}{{$item.metadata.name}}{{"\n"}}{{end}}{{end}}{{end}}' | column -t | sort -n`
80
81 # Split port number and service name
82 PORTS=`awk '{print $1}' <<<"$PORTS_SVCS"`
83 SVCS=`awk '{print $2}' <<<"$PORTS_SVCS"`
84
85 # Create a list in nmap-compatible format
86 PORT_LIST=`tr "\\n" "," <<<"$PORTS" | sed 's/,$//'; echo ''`
87
88 # Get IP address of some cluster node (both "external-ip" and "ExternalIP" labels are matched)
89 K8S_NODE=`kubectl describe nodes \`kubectl get nodes | grep -v NAME | head -n 1 | awk '{print $1}'\` | grep "external-ip\|ExternalIP" | awk '{print $2}'`
90
91 # perform scan
92 SCAN_RESULT=`nmap $K8S_NODE -sV -p $PORT_LIST 2>/dev/null | grep \tcp`
93
94 # Concatenate scan result with service name
95 RESULTS=`paste <(printf %s "$SVCS") <(printf %s "$SCAN_RESULT") | column -t`
96
97 # Find all non-SSL ports
98 HTTP_PORTS=`grep -v ssl <<< "$RESULTS" | grep open | tee "$FILTERED_PORTS_LIST"`
99
100 # Filter out whitelisted endpoints
101 while IFS= read -r line; do
102         # for each line we test if it is in the white list with a regular expression
103         while IFS= read -r wl_line; do
104                 wl_name=$(echo $wl_line | awk {'print $1'})
105                 wl_port=$(echo $wl_line | awk {'print $2'})
106                 if grep -e $wl_name.*$wl_port <<< "$line"; then
107                         # Found in white list, exclude it
108                         sed -i "/^$wl_name.*$wl_port/d" $FILTERED_PORTS_LIST
109                 fi
110         done < $XF_RAW_FILE_PATH
111 done < $FILTERED_PORTS_LIST
112
113 # Count them
114 N_FILTERED_PORTS_LIST=$(cat $FILTERED_PORTS_LIST | wc -l)
115 echo "------------------------------------"
116 echo "Nb error pod(s): $N_FILTERED_PORTS_LIST"
117 cat $FILTERED_PORTS_LIST
118 exit $N_FILTERED_PORTS_LIST