s3 updates

This commit is contained in:
carnal0wnage
2018-05-17 20:10:19 -04:00
parent 7f6ad7a02f
commit 9742a6fb99
2 changed files with 34 additions and 0 deletions

View File

@@ -59,3 +59,11 @@ def module_s3_list_buckets_from_file(*args):
python3 weirdAAL.py -m s3_list_buckets_from_file -a 'bucket_list.txt' -t yolo
'''
s3_get_bucket_objects_from_file(args[0][0])
def module_s3_get_file_acl(*args):
'''
S3 get the ACL on a file
python3 weirdAAL.py -m s3_get_file_acl -a 'bucket','file' -t yolo
'''
s3_get_file_acl(args[0][0], args[0][1])