Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/protocols/http/matcher-status.yaml
2070 views
1
id: matcher-status
2
3
info:
4
name: Test Matcher Status
5
author: pdteam
6
severity: critical
7
8
variables:
9
username: test
10
password: admin
11
date: 2023-05-31
12
13
http:
14
- method: GET
15
path:
16
- "{{RootURL}}/login?username={{username}}&password={{password}}"
17
- "{{BaseURL}}/admin-pannel"
18
19
- method: GET
20
path:
21
- "{{BaseURL}}/dashboard?date={{date}}"
22
- "{{BaseURL}}/signup"
23
24
- method: POST
25
path:
26
- "{{BaseURL}}/filemanager/upload.php"
27
body: "fldr=&url=file:///etc/passwd"
28
29
30
stop-at-first-match: true
31
matchers-condition: and
32
matchers:
33
- type: word
34
part: body
35
words:
36
- "matcher status"
37
38
- type: status
39
status:
40
- 200
41
42