29 lines
497 B
YAML
29 lines
497 B
YAML
|
id: example-poc
|
||
|
info:
|
||
|
name: Example POC
|
||
|
author: Your Name
|
||
|
severity: medium
|
||
|
description: |
|
||
|
This is an example POC template.
|
||
|
requests:
|
||
|
- name: Example Request
|
||
|
method: GET
|
||
|
path: /vulnerable_endpoint
|
||
|
headers:
|
||
|
User-Agent: nuclei-scanner
|
||
|
body: |
|
||
|
{
|
||
|
"key": "value"
|
||
|
}
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- "Vulnerability Detected"
|
||
|
- type: status
|
||
|
status: 200
|
||
|
- type: word
|
||
|
part: headers
|
||
|
words:
|
||
|
- "Content-Type: application/json"
|