nuclei/integration_tests/http/variables.yaml

26 lines
413 B
YAML
Raw Normal View History

id: variables-example
info:
name: Variables Example
author: pdteam
severity: info
variables:
a1: "value"
2022-04-20 10:06:02 +00:00
a2: "{{base64('hello')}}"
requests:
- raw:
- |
GET / HTTP/1.1
Host: {{FQDN}}
Test: {{a1}}
Another: {{a2}}
stop-at-first-match: true
matchers-condition: or
matchers:
- type: word
words:
2022-04-20 10:06:02 +00:00
- "value"
- "aGVsbG8="