Skip to content

Commit

Permalink
Merge pull request #437 from TeneBrae93/master
Browse files Browse the repository at this point in the history
Fixed the apigateway__enum module
  • Loading branch information
DaveYesland committed Jun 14, 2024
2 parents b32a306 + 60dd4ff commit 64524a4
Showing 1 changed file with 53 additions and 93 deletions.
146 changes: 53 additions & 93 deletions pacu/modules/apigateway__enum/main.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
#!/usr/bin/env python3

import argparse
import os
from pathlib import Path
import pprint
import json
import time
from copy import deepcopy

from pacu.core.lib import downloads_dir
from pacu import Main

module_info = {
'name': 'enum__apigateway',
Expand All @@ -31,34 +29,21 @@

pp = pprint.PrettyPrinter(indent=2)


# Get all resources for API
#
# return [] dict
# Get all resources for API
def get_api_resources(client, api_id):
response = client.get_resources(restApiId=api_id)
return response['items']


# Get All deployment stages of API
#
# returns [] string
def get_api_stages(client, api_id):
response = client.get_stages(restApiId=api_id)
names = []
for stage in response['item']:
if(stage.get('stageName')):
names.append(stage['stageName'])
return names

return [stage['stageName'] for stage in response['item'] if stage.get('stageName')]

# Get all supported methods per api resources "/users"
#
# Returns [] dict
def get_api_methods(client, api_id, resource):
routes = []
if resource.get('resourceMethods'):
for method in resource.get('resourceMethods'):
for method in resource['resourceMethods']:
response = client.get_method(
restApiId=api_id,
resourceId=resource['id'],
Expand All @@ -67,14 +52,15 @@ def get_api_methods(client, api_id, resource):
routes.append(response)
return routes


def get_api_keys(client):
response = client.get_api_keys(limit=500, includeValues=True)
if response.get('items'):
return response['items']
try:
response = client.get_api_keys(limit=500, includeValues=True)
if response.get('items'):
return response['items']
except client.exceptions.ClientError as e:
print(f"Failed to get API keys: {e}")
return []


def get_client_certs(client):
response = client.get_client_certificates(limit=500)
data = []
Expand All @@ -85,29 +71,22 @@ def get_client_certs(client):
data.append(cert)
return data


# If permissions supported export the API documentaion as Swagger File
def export_api_doc(client, session, api_summary, exportType='swagger'):

files_names = []
output_path = downloads_dir()/'apigateway'
output_path.mkdir(exist_ok=True)

# If permissions supported export the API documentation as Swagger File
def export_api_doc(client, api_summary, exportType='swagger'):
docs = []
api_id = api_summary['id']
api_name = api_summary['name']
stages = api_summary['stages']

for stage in stages:
response = client.get_export(restApiId=api_id, stageName=stage, exportType=exportType)
filename = f"{api_name}_{stage}_swagger.json"
with open(output_path / filename, 'w') as f:
data = json.loads(response['body'].read().decode("utf-8"))
json.dump(data, f, indent=4)

files_names.append(filename)

return files_names
data = json.loads(response['body'].read().decode("utf-8"))
docs.append({
'stage': stage,
'content': json.dumps(data, indent=4)
})

return docs

# Take method obj and parse into method summary
def parse_method(base_url, method, path, stages):
Expand Down Expand Up @@ -140,111 +119,92 @@ def parse_method(base_url, method, path, stages):

return api_method


def main(args, pacu):
def main(args, pacu_main: "Main"):
"""Main module function, called from Pacu"""
print = pacu.print
session = pacu.get_active_session()
print = pacu_main.print
session = pacu_main.get_active_session()
args = parser.parse_args(args)

outfile_path = downloads_dir()/'apigateway'

if args.regions:
regions = args.regions.split(',')
else:
regions = pacu.get_regions('apigateway')
regions = pacu_main.get_regions('apigateway')

# Set up summary data object
# apis[] holds each api object which contains api info an route info
# apikeys[] holds all api keys
# clientCerts[] holds all client certs
summary_data = {'apis': [], 'apiKeys': [], 'clientCerts': []}

for region in regions:
client = pacu.get_boto3_client('apigateway', region)
client = pacu_main.get_boto3_client('apigateway', region)
print(f"Enumerating {region}")

# Get global API data
summary_data['apiKeys'] = get_api_keys(client)
summary_data['clientCerts'] = get_client_certs(client)
try:
summary_data['apiKeys'] = get_api_keys(client)
except Exception as e:
print(f"Failed to get API Keys in {region}: {e}")
try:
summary_data['clientCerts'] = get_client_certs(client)
except Exception as e:
print(f"Failed to get Client Certs in {region}: {e}")

# Currently this only supports REST apis
# Get all apis in AWS Gatway
response = client.get_rest_apis()
try:
response = client.get_rest_apis()
except Exception as e:
print(f"Failed to get APIs in {region}: {e}")
continue

items = response['items']

# for each api in the account
for api in items:

# create api objecy summary
api_summary = {
'id': '',
'name': '',
'stages': [],
'urlBase': "",
'id': api['id'],
'name': api['name'],
'stages': get_api_stages(client, api['id']),
'urlBase': f"https://{api['id']}.execute-api.{region}.amazonaws.com/",
'urlPaths': [],
"apiDocs": []
}

# Set up base info used by methods
api_summary['id'] = api['id']
api_summary['name'] = api['name']
api_summary['stages'] = get_api_stages(client, api_summary['id'])
api_summary['urlBase'] = f"https://{api_summary['id']}.execute-api.{region}.amazonaws.com/"

print(f"Enumerating API: {api_summary['name']}")

# For each resource get all methods and parse it into it's method summary.
for resource in get_api_resources(client, api_summary['id']):
for method in get_api_methods(client, api_summary['id'], resource):
for resource in get_api_resources(client, api['id']):
for method in get_api_methods(client, api['id'], resource):
api_summary['urlPaths'].append(parse_method(api_summary['urlBase'], method, resource['path'], api_summary['stages']))

# Append api results to main summary
summary_data['apis'].append(api_summary)
api_summary['apiDocs'] = export_api_doc(client, api_summary)

# attempt to export api_docs
api_summary['apiDocs'] = export_api_doc(client, session, api_summary)

# Write summary all data to downloads file
if(len(summary_data['apis']) > 0):
print("Writing all results to file: {}/".format(outfile_path))
filename = f"apigateway_{region}_{time.time()}.json"
with open(outfile_path / filename, "w+") as f:
f.write(
json.dumps(summary_data, indent=4, default=str)
)
f.close()
# Write all the data to the database for storage
apigateway_data = deepcopy(session.APIGateway)
for key, value in summary_data.items():
apigateway_data[key] = value
session.update(pacu_main.database, APIGateway=apigateway_data)

return summary_data


def summary(data, pacu):
def summary(data, pacu_main):
msg = ''
if not data:
msg = 'Module execution failed'
else:
msg = "Data saved to session file."

# Display all API routes
print("-----API Routes-----")
for api in data['apis']:
print(f"\n\tAPI Name: {api['name']}")
print(f"\tAPI Stages: {', '.join(api['stages'])}")
print(f"\tExported Documentation: { ', '.join(api['apiDocs']) } ")
print(f"\tExported Documentation: {[doc['stage'] for doc in api['apiDocs']]}")

for url_paths in api['urlPaths']:
# print a new http url for each staged version
[print(f"\t\t {url_paths['method']}: {url}") for url in url_paths['url']]

# Display Global API keys
print("-----API Keys-----")
for key in data['apiKeys']:
print(f"\tKey Name: {key['name']} \n\t\tValue: {key['value']} \n\t\tcreatedDate: {key['createdDate']}")

# Display Gloal Client Certs
print("-----Client Certs-----")
for cert in data['clientCerts']:
print(f"\tCert Id: {cert['clientCertificateId']} \n\t\texpirationDate: {cert['expirationDate']} \n\t\tpem: {cert['pemEncodedCertificate']}")

return(msg)
return msg

0 comments on commit 64524a4

Please sign in to comment.