This commit is contained in:
gurkenhabicht 2024-02-10 20:52:33 +01:00
parent b682bbe990
commit 08e59d51b1
1 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# AWS S3 Enumeration # AWS Enumeration
## Regions ## Regions
@ -33,6 +33,14 @@ or
http://s3.amazonaws.com/BUCKETNAME/FILENAME.ext http://s3.amazonaws.com/BUCKETNAME/FILENAME.ext
``` ```
### Check Permissions of a bucket
Do a `PUT` method to see if the bucket may be writeable to upload a file via
```sh
curl -vvv -X PUT $BUCKET_URL --data "Test of write permissions"
```
### List content of public bucket via ### List content of public bucket via
```sh ```sh
@ -180,14 +188,6 @@ aws secretsmanager list-secrets
ws secretsmanager get-secret-value --secret-id <Name> --region <region> ws secretsmanager get-secret-value --secret-id <Name> --region <region>
``` ```
## Check Permissions on S3 Bucket
Do a `PUT` method to see if the bucket may be writeable to upload a file via
```sh
curl -vvv -X PUT $BUCKET_URL --data "Test of write permissions"
```
## Virtual Private Cloud (VPC) ## Virtual Private Cloud (VPC)
Is a logic network segementation method using its own IP address range. Is a logic network segementation method using its own IP address range.