35 lines
640 B
YAML
35 lines
640 B
YAML
|
id: azure-website-enum
|
||
|
|
||
|
info:
|
||
|
name: Azure Websites - Cloud Enumeration
|
||
|
author: initstring
|
||
|
severity: info
|
||
|
description: |
|
||
|
Searches for Azure websites that are registered and responding.
|
||
|
metadata:
|
||
|
verified: true
|
||
|
tags: cloud,azure
|
||
|
|
||
|
self-contained: true
|
||
|
|
||
|
variables:
|
||
|
BaseDNS: "azurewebsites.net"
|
||
|
|
||
|
http:
|
||
|
- raw:
|
||
|
- |
|
||
|
GET https://{{wordlist}}.{{BaseDNS}} HTTP/1.1
|
||
|
Host: {{wordlist}}.{{BaseDNS}}
|
||
|
|
||
|
redirects: false
|
||
|
|
||
|
attack: batteringram
|
||
|
threads: 10
|
||
|
|
||
|
matchers:
|
||
|
- type: status
|
||
|
name: "Available Azure Website"
|
||
|
status:
|
||
|
- 200
|
||
|
- 302
|
||
|
condition: or
|