Layout
This commit is contained in:
parent
b682bbe990
commit
08e59d51b1
|
@ -1,4 +1,4 @@
|
|||
# AWS S3 Enumeration
|
||||
# AWS Enumeration
|
||||
|
||||
## Regions
|
||||
|
||||
|
@ -33,6 +33,14 @@ or
|
|||
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
|
||||
|
||||
```sh
|
||||
|
@ -180,14 +188,6 @@ aws secretsmanager list-secrets
|
|||
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)
|
||||
|
||||
Is a logic network segementation method using its own IP address range.
|
||||
|
|
Loading…
Reference in New Issue