mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-02-01 00:03:15 +08: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 58fdd4faf7.
* 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
|
|
|