mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 14:45:27 +00:00
22 lines
325 B
YAML
22 lines
325 B
YAML
id: variables-example
|
|
|
|
info:
|
|
name: Variables Example
|
|
author: pdteam
|
|
severity: info
|
|
|
|
variables:
|
|
a1: "PING"
|
|
a2: "{{base64('hello')}}"
|
|
|
|
network:
|
|
- host:
|
|
- "{{Hostname}}"
|
|
inputs:
|
|
- data: "{{a1}}"
|
|
read-size: 8
|
|
matchers:
|
|
- type: word
|
|
part: data
|
|
words:
|
|
- "{{a2}}" |