-
Notifications
You must be signed in to change notification settings - Fork 65
/
provider.json
130 lines (128 loc) · 3.21 KB
/
provider.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[
{
"vulnerability": "PHP info is publicly viewable",
"method": "GET",
"color": "blue",
"body": "",
"endpoint": [
"/php.php",
"/phpinfo.php",
"/info.php",
"/_profiler/phpinfo",
"/infophp.php",
"/php_info.php",
"/test.php",
"/i.php",
"/asdf.php",
"/pinfo.php",
"/phpversion.php",
"/time.php"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "PHP Version&&&&PHP API&&&&PHP Extension"
},
{
"vulnerability": "WP-Config Exposed",
"method": "GET",
"color": "red",
"body": "",
"endpoint": [
"/wp-config.php~",
"/wp-config.php.save",
"/wp-config.php_bak",
"/wp-config.php.bak",
"/wp-config.php.old",
"/wp-config.php.orig",
"/wp-config.php.original"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "DB_USER"
},
{
"vulnerability": "Server status is publicly viewable",
"method": "GET",
"color": "blue",
"body": "",
"endpoint": [
"/server-status"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "CPU Usage&&&&Server Version&&&&Apache Server Status"
},
{
"vulnerability": "Tomcat Server status is publicly viewable",
"method": "GET",
"color": "blue",
"body": "",
"endpoint": [
"/status?full=true"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "Current thread count"
},
{
"vulnerability": ".git Exposed publicly",
"method": "GET",
"color": "red",
"body": "",
"endpoint": [
"/.git/config"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "[core]"
},
{
"vulnerability": "Rails Database Config file",
"method": "GET",
"color": "red",
"body": "",
"endpoint": [
"/config/database.yml"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "adapter:&&&&database:"
},
{
"vulnerability": "Magento Config",
"method": "GET",
"color": "red",
"body": "",
"endpoint": [
"/app/etc/local.xml",
"/store/app/etc/local.xml"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "<config&&&&Mage"
},
{
"vulnerability": ".env file detected",
"method": "GET",
"color": "blue",
"body": "",
"endpoint": [
"/.env"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "APP_ENV=||||DB_PASSWORD="
},
{
"vulnerability": "Directory Listing Enabled",
"method": "GET",
"color": "blue",
"body": "",
"endpoint": [
"/"
],
"headers": [],
"checkIn": "responseBody",
"checkFor": "<title>Directory listing for ||||<title>Index of "
}
]