mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-03 01:03:34 +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>
44 lines
1.0 KiB
YAML
44 lines
1.0 KiB
YAML
id: gcp-app-engine-enum
|
|
|
|
info:
|
|
name: GCP App Engine (Appspot) - Cloud Enumeration
|
|
author: initstring
|
|
severity: info
|
|
description: |
|
|
Searches for App Engine Apps in GCP.
|
|
metadata:
|
|
verified: true
|
|
max-request: 1
|
|
tags: enum,cloud,cloud-enum,gcp
|
|
|
|
self-contained: true
|
|
|
|
variables:
|
|
BaseDNS: "appspot.com"
|
|
loginRedirect: "accounts.google.com"
|
|
|
|
http:
|
|
- raw:
|
|
- |
|
|
GET https://{{wordlist}}.{{BaseDNS}} HTTP/1.1
|
|
Host: {{wordlist}}.{{BaseDNS}}
|
|
|
|
redirects: false
|
|
|
|
attack: batteringram
|
|
threads: 10
|
|
|
|
matchers:
|
|
- type: dsl
|
|
name: "Open GCP App Engine App"
|
|
dsl:
|
|
- "status_code==200"
|
|
|
|
- type: dsl
|
|
name: "Protected GCP App Engine App"
|
|
dsl:
|
|
- "status_code==302"
|
|
- contains(location, "login")
|
|
condition: and
|
|
|
|
# digest: 490a00463044022049b2ab788a102342c3ee4b36d87315f145c3e963f1bd8389d1b2d9f90540f05402203bb1fa138a4e29c568c6bd421cb97c526e822c25fc952368295259787bc159d4:922c64590222798bb761d5b6d8e72950 |