Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/protocols/http/race-multiple.yaml
2070 views
1
id: race-condition-testing
2
3
info:
4
name: Race condition testing with multiple requests
5
author: pdteam
6
severity: info
7
8
http:
9
- raw:
10
- |
11
GET / HTTP/1.1
12
Host: {{Hostname}}
13
14
id=1
15
16
- |
17
GET / HTTP/1.1
18
Host: {{Hostname}}
19
20
id=2
21
22
- |
23
GET / HTTP/1.1
24
Host: {{Hostname}}
25
26
id=3
27
28
- |
29
GET / HTTP/1.1
30
Host: {{Hostname}}
31
32
id=4
33
34
- |
35
GET / HTTP/1.1
36
Host: {{Hostname}}
37
38
id=5
39
40
threads: 5
41
race: true
42
43
matchers:
44
- type: status
45
status:
46
- 200
47