mirror of https://github.com/daffainfo/nuclei.git
19 lines
392 B
YAML
19 lines
392 B
YAML
id: basic-post-json-body
|
|
|
|
info:
|
|
name: Basic POST JSON Body Request
|
|
author: pdteam
|
|
severity: info
|
|
|
|
requests:
|
|
- method: POST
|
|
path:
|
|
- "{{BaseURL}}"
|
|
headers:
|
|
Content-Type: application/json
|
|
Content-Length: 1
|
|
body: '{"username":"test","password":"nuclei"}'
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "This is test post-json-body matcher text" |