-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathapache-status-page.yaml
41 lines (37 loc) · 1.11 KB
/
apache-status-page.yaml
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
id: apache-status-page
info:
name: Apache Status Page
risk: Medium
params:
- root: "{{.BaseURL}}"
variables:
- stats: |
/
/server-status
/status.html
/stats
/_stats
requests:
- method: GET
redirect: false
headers:
- User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3984.0 Safari/537.36
url: >-
{{.root}}{{.stats}}
detections:
- >-
StatusCode() == 200 && StringSearch("response", "Server Version") && StringSearch("response", "Current Time")
- method: GET
redirect: false
headers:
- User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3984.0 Safari/537.36
- X-Client-IP: "127.0.0.1"
- X-Remote-IP: "127.0.0.1"
- X-Remote-Addr: "127.0.0.1"
- X-Forwarded-For: "127.0.0.1"
- X-Originating-IP: "127.0.0.1"
url: >-
{{.root}}{{.stats}}
detections:
- >-
StatusCode() == 200 && StringSearch("response", "Server Version") && StringSearch("response", "Current Time")