-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Added time based delay analyzer to fuzzing implementation #5781
base: dev
Are you sure you want to change the base?
Conversation
… fuzzing-additions
… analyzers-fuzzing-additions
By design, users won’t really know how the Another key point to ensure is that the output type is boolean. So, instead of doing it like this: matchers:
- type: word
# Also, DSL part analyzer_details contains detailed analysis
# from the time delay analyzer.
part: analyzer_matched
words:
- "true" We could go with a more straightforward approach by defining the matcher as: matchers:
- type: dsl
dsl:
- time_delay # shorthand: time_delay == true This is clearer and easier to follow. |
Is Here's what I'm thinking: analyzer:
- type: time_delay
name: delayed # exported
parameters: {...}
- type: another_analyzer # what if there's no `name`? Defining `analyzer_N`?
parameters: {...}
matchers:
- type: dsl
dsl:
- delayed == true |
Proposed changes
Added time delay verification by using alternating requests logic from ZAP to nuclei DAST mode and also added the concept of analyzers allowing more complicated verification checks. (HTTP - Fuzzing only)
Example template:
Checklist