1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Azure Blob Storage container definitions.
#
# Common container names in Azure Blob Storage accounts.
# These containers are probed to discover public exposures.
#
# The $web container is special — it's the static website hosting container
# and is the highest-value target for reconnaissance.
#
# Users can extend these definitions by creating a custom TOML file.
[[]]
= "$web"
= "static website hosting container"
= "critical"
[[]]
= "public"
= "public assets container"
= "high"
[[]]
= "assets"
= "static assets container"
= "high"
[[]]
= "static"
= "static files container"
= "high"
[[]]
= "files"
= "file storage container"
= "high"
[[]]
= "uploads"
= "user uploads container"
= "critical"
[[]]
= "media"
= "media files container"
= "high"
[[]]
= "images"
= "image storage container"
= "high"
[[]]
= "docs"
= "documents container"
= "high"
[[]]
= "backup"
= "backup storage container"
= "critical"
[[]]
= "data"
= "general data container"
= "high"