moving stuff around, pep8 some stuff

This commit is contained in:
carnal0wnage
2018-04-07 17:15:38 -04:00
parent 961642af4a
commit 2898c11afb
8 changed files with 157 additions and 108 deletions

View File

@@ -12,6 +12,14 @@ from config import AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY
# for a key, what services does it have listed in the DB
def step_show_services_by_key():
db_name = "weirdAAL.db"
results = search_recon_by_key(db_name,AWS_ACCESS_KEY_ID)
print("Services enumerated for {}".format(AWS_ACCESS_KEY_ID))
for result in results:
print("{}:{}".format(result[0],result[1]))
#same as show_sevices
def step_list_services_by_key():
db_name = "weirdAAL.db"
results = search_recon_by_key(db_name,AWS_ACCESS_KEY_ID)
print("Services enumerated for {}".format(AWS_ACCESS_KEY_ID))