Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/protocols/http/post-body.yaml
2070 views
1
id: basic-post-body
2
3
info:
4
name: Basic POST Body Request
5
author: pdteam
6
severity: info
7
8
http:
9
- method: POST
10
path:
11
- "{{BaseURL}}"
12
headers:
13
Content-Type: application/x-www-form-urlencoded
14
Content-Length: 1 # as long as there is a value, nuclei will auto-recalculate it.
15
body: username=test&password=nuclei
16
matchers:
17
- type: word
18
words:
19
- "This is test post-body matcher text"
20