Last active
April 4, 2017 14:24
-
-
Save stanch/fbc30d547687766f63fee65aa7e2b500 to your computer and use it in GitHub Desktop.
A tool for plotting security rules found in a CloudFormation template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# MIT License | |
# | |
# Copyright (c) 2017 Nick Stanchenko | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# | |
# The above copyright notice and this permission notice shall be included in all | |
# copies or substantial portions of the Software. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
# SOFTWARE. | |
# | |
# This script produces a JSON Graph (http://jsongraphformat.info/) representation of the security rules | |
# found in a given CloudFormation template (only rules specified as resources are supported). | |
# | |
# Usage: | |
# sudo apt-get install jq graphviz | |
# sudo npm install -g jgf-dot | |
# security-group-json-graph.sh template.json | jgfdot | dot -Tsvg -otest.svg -Granksep=1.5 | |
# | |
jq ' | |
# Generic map for JSON | |
def fmap(f): | |
if type == "object" then map_values(f) else if type == "array" then map(f) else . end end; | |
# Catamorphism, same as https://stedolan.github.io/jq/manual/#walk(f) in newer versions | |
def cata(f): | |
fmap(cata(f)) | f; | |
# Ignore Fn::Sub intrinsic functions and replace them with their arguments | |
def eliminate_subs: cata( | |
if type == "object" and has("Fn::Sub") then | |
if (.["Fn::Sub"] | type) == "array" then .["Fn::Sub"][0] else .["Fn::Sub"] end | |
else | |
. | |
end | |
); | |
# Ignore Fn::ImportValue intrinsic functions and replace them with their arguments | |
def eliminate_imports: cata( | |
if type == "object" and has("Fn::ImportValue") then | |
{ Ref: .["Fn::ImportValue"] } | |
else | |
. | |
end | |
); | |
# Reference to the subject security group from a security rule | |
def node_ref: | |
.GroupId.Ref // .GroupName.Ref; | |
# Reference to the source security group from a security rule | |
def source_node_ref: | |
.SourceSecurityGroupId.Ref // .SourceSecurityGroupName.Ref // .CidrIp; | |
# Reference to the destination security group from a security rule | |
def target_node_ref: | |
.DestinationSecurityGroupId.Ref // .DestinationSecurityGroupName.Ref // .CidrIp; | |
# Pretty-print -1 as * for IP protocols and port numbers | |
def wildcard(value): | |
if value == "-1" then "*" else value end; | |
# Label an edge in the graph with the details about the allowed connections | |
def edge_label(proto; from; to): | |
wildcard(proto) + " " + | |
(if proto == "icmp" then | |
wildcard(from) + " " + wildcard(to) | |
else | |
if from == to then from else from + "-" + to end | |
end); | |
# Gather all security rules of a given type (inbound or outbound) to form an array of edges in the graph | |
def edges(type; source; target): | |
.Resources | map( | |
select(.Type == type) | .Properties | | |
{ | |
source: source, | |
target: target, | |
label: edge_label(.IpProtocol; .FromPort; .ToPort), | |
directed: true, | |
metadata: { type: type } | |
} | |
); | |
# Combine the edges for each pair of nodes, aggregating their labels | |
def combine_edges: | |
group_by(.source, .target, .metadata.type) | map( | |
. as $all | .[0] | | |
.label = " " + ([$all[].label] | join(", ")) | |
); | |
# Gather all edges for the graph | |
def edges: | |
edges("AWS::EC2::SecurityGroupEgress"; node_ref; target_node_ref) + | |
edges("AWS::EC2::SecurityGroupIngress"; source_node_ref; node_ref) | | |
combine_edges; | |
# Gather all nodes referenced by the edges, fetching pretty descriptions where possible | |
def nodes: | |
. as $input | | |
edges | map(.source, .target) | unique | map( | |
. as $id | | |
{ | |
id: $id, | |
label: ($input.Resources[$id].Properties.GroupDescription // $id) | |
} | |
); | |
# Build the graph | |
eliminate_subs | eliminate_imports | | |
{ | |
graph: { | |
directed: true, | |
nodes: nodes, | |
edges: edges | |
} | |
} | |
' $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment