mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 19:25:26 +00:00
* fuzz: rename 'filters' -> 'pre-condition' * code proto: pre-condition + integration test * feat: dsl document generator * update dsl page header * fix lint error * add js defined helper funcs in docs * remove panic recovery unless its for third party(go-rod,goja) * handle dynamic values flattening edgecase in flow+multiprotocol * fix order of kv in form-data (failing test) * fix template loading counters * Revert "handle dynamic values flattening edgecase in flow+multiprotocol" This reverts commit 58fdd4faf7df5d654b46a9585011f614d5c98aa4. * fix flow iteration using 'iterate'
40 lines
718 B
YAML
40 lines
718 B
YAML
id: fuzz-query-num
|
|
|
|
info:
|
|
name: Fuzz Query Param For IDOR
|
|
author: pdteam
|
|
severity: info
|
|
description: Query Value Fuzzing using Fuzzing Rules
|
|
|
|
http:
|
|
- pre-condition:
|
|
- type: dsl
|
|
dsl:
|
|
- 'len(query) > 0'
|
|
# below filter is related to integration testing
|
|
- type: word
|
|
part: path
|
|
words:
|
|
- /blog/post
|
|
pre-condition-operator: and
|
|
|
|
payloads:
|
|
nums:
|
|
- 200
|
|
- 201
|
|
|
|
fuzzing:
|
|
- part: query
|
|
type: replace
|
|
mode: multiple
|
|
values:
|
|
- "^[0-9]+$" # only if value is number
|
|
fuzz:
|
|
- '{{nums}}'
|
|
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|