Page cover
githubEdit

awsAWS

chevron-rightaws-clihashtag
circle-info

Set it up remotely

Set the ID
aws configure set aws_access_key_id health
Set the key
aws configure set aws_secret_access_key 444af250749d
circle-info

Enumeration

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/
circle-info
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-read
Remove a file
aws s3 rm s3://Bucket_Name/FILE_NAME
chevron-rightDynamodbhashtag
circle-info

Set the Dynamodb instance

circle-info

Enumeration

circle-info
circle-info

Create an item

Last updated