Tools and Utilities (WIP)

Here we can find some tools and utilities commonly used for practices related to Cloud Hacking:

awscli

  • A utility used to connect to AWS services using the command line

  • It could interact with services such as S3 buckets

Commands

  • Install Amazon CLI

sudo apt install awscli

  • Configure amazon

sudo aws configure #Set every parameter to temp

  • Access to the S3 service

sudo aws --endpoint=http://$url s3 $command #Execute a command on the bucket
sudo aws --endpoint=http://$url s3 ls #List buckets
sudo aws --endpoint=http://$url s3 ls s3://$listedurl #Lists elements in the bucket
sudo aws --endpoint=http://$url s3 cp $file s3://$listedurl #Upload a file to a bucket

Last updated