Fix DAST skipping URLs with part: request and mode: multiple#7326
Fix DAST skipping URLs with part: request and mode: multiple#7326dogancanbakir wants to merge 1 commit intodevfrom
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
WalkthroughModified the fuzzing rule execution logic in Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
Proposed changes
Closes #6209
FuzzParamsFrequencywas frequency-checking empty parameter names inmode: multiple. Since multiple mode fuzzes all parameters at once,execWithInputis called with empty parameter/parameterValue. The empty string was being tracked and matched, silently skipping subsequent URLs' fuzz requests.Fix: skip frequency check when parameter name is empty.
Proof
Start a local server and generate 30 URLs:
Template:
Before (dev):
After (fix):
Checklist
Summary by CodeRabbit
Bug Fixes