mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-10 12:43:29 +08:00
* s3 bucket checks * fixed lint errors * IAM checks * added ec2 templates * rdp * fixed lint error * acm & cloudwatch templates * cloudtrail * vpc templates added * added aws profile * fixed lint * added aws-code-env * added iterate in flow * added scan profile + updated tags * Delete config/cloud/aws.yml * updated scan profile * syntax update * removed local digest * added comments --------- Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com> Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io>
41 lines
895 B
YAML
41 lines
895 B
YAML
id: gcp-bucket-enum
|
|
|
|
info:
|
|
name: GCP Buckets - Cloud Enumeration
|
|
author: initstring
|
|
severity: info
|
|
description: |
|
|
Searches for open and protected buckets in GCP.
|
|
metadata:
|
|
verified: true
|
|
max-request: 1
|
|
tags: cloud,enum,cloud-enum,gcp
|
|
|
|
self-contained: true
|
|
|
|
variables:
|
|
BaseDNS: "storage.googleapis.com"
|
|
|
|
http:
|
|
- raw:
|
|
- |
|
|
GET http://{{wordlist}}.{{BaseDNS}} HTTP/1.1
|
|
Host: {{wordlist}}.{{BaseDNS}}
|
|
|
|
redirects: false
|
|
|
|
attack: batteringram
|
|
threads: 10
|
|
|
|
matchers:
|
|
- type: status
|
|
name: "Open GCP Bucket"
|
|
status:
|
|
- 200
|
|
|
|
- type: status
|
|
name: "Protected GCP Bucket"
|
|
status:
|
|
- 403
|
|
|
|
# digest: 4a0a00473045022038ad1830fc8e77debc4c9fcab4d7eb4c62b9930c3f98860f5e6877c1e72578a4022100e3ea9b5730d32e9219e4716c79b5203733ff802460ee921d0f0c2199ecca7989:922c64590222798bb761d5b6d8e72950 |