AWS
aws-cli
Set it up remotely
Set the ID
aws configure set aws_access_key_id healthSet the key
aws configure set aws_secret_access_key 444af250749dEnumeration
List the buckets romotetly
aws s3 ls --endpoint-url http://s3.bucket.htb/List buckets locally
aws s3 ls s3://BUCKET_Name/List the bucket's content
aws s3 ls s3://adserver --endpoint-url http://s3.bucket.htb/Upload a file
aws s3 cp FILE_NAME s3://BUCKET_NAME/Upload it and make it public
aws s3 cp tokyo s3://adserver/ --endpoint-url http://s3.bucket.htb --acl public-readRemove a file
aws s3 rm s3://Bucket_Name/FILE_NAMELast updated