Reading Time: < 1 minute

dig website.cloud
nslookup website.cloud

sudo pip install awscli

List content of a public AWS bucket
aws s3 ls s3://website.cloud –no-sign-request –region us-west-2

List content of a user authenticated AWS bucket
aws configure –profile myuserprofilename # Add your AWS profile to AWS CLI
aws s3 –profile myuserprofilename 
ls s3://authenticate-website.cloud # List content of an AWS bucket with a profile

Download all the content of an AWS bucket
aws s3 sync s3://website.cloud/ . –no-sign-request –region us-west-2

0