You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AWS Extender CLI is a command-line script to test S3 buckets as well as Google Storage buckets and Azure Storage containers for common misconfiguration issues using the boto/boto3 SDK library.
AWS Extender CLI is a command-line script to test S3 buckets as well as Google Storage buckets and Azure Storage containers for common misconfiguration issues using the boto/boto3 SDK library.
Installing Dependencies
Both of boto and boto3 are required. You can install them using pip:
$ pip install -r requirements.txt
CLI Arguments
Below is a description of supported arguments:
Argument
Description
Required
-h, --help
Show a help message and exit
False
-f, --filepath
The path of a bucket names list
False*
-b, --bucket
The name of the bucket to test
False*
-w, --wordlist
A wordlist filepath
False
-o, --output
An output filename
False
-k, --keys
The path of your credentials file
False
-s, --service
the name of the storage service ("S3", "GS", or "Azure")
True
Notes:
Mutually exclusive arguments are denoted by an asterisk.
The -k/--keys argument expects the filepath of your AWS/GS keys. The keys are expected to be in the following format:
AWS Extender CLI is a command-line script to test S3 buckets as well as Google Storage buckets and Azure Storage containers for common misconfiguration issues using the boto/boto3 SDK library.