mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:25:27 +00:00
40 lines
707 B
YAML
40 lines
707 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:
|
||
|
|
- filters:
|
||
|
|
- type: dsl
|
||
|
|
dsl:
|
||
|
|
- 'len(query) > 0'
|
||
|
|
# below filter is related to integration testing
|
||
|
|
- type: word
|
||
|
|
part: path
|
||
|
|
words:
|
||
|
|
- /blog/post
|
||
|
|
filters-condition: 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
|
||
|
|
|