Bucket S3
Enumeration
aws s3 lsaws s3 ls s3:<bucket name> #root level
aws s3 ls s3:<bucket name>/<path> aws s3api get-bucket-policy --bucket <bucket name> --query Policy --output text | jq .Commands
Download
aws s3 cp s3://<bucket>/<path to file> .aws s3 sync s3://<bucket> . #all
aws s3 sync s3://<bucket>/<path> . #all from specified pathGenerate a presigned url
Last updated