-
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: fixed bug due to parallel auto setting in http #4992
Conversation
If my reading here is correct, this will still cause problems with greater than 10 payloads? I don't think this is a reasonable fix, since there's a condition here where the issue crops up again. We're introducing an edge case where <10 payloads behaves one way, and >10 behaves another way. A better option might be to detect when variable substitution and an extractor is being used programatically, then turn off auto-concurrency. There's a very simplified version of this logic in the script in issue #4993 |
Confirmed, with this patch anything that has >NUCLEI_PAYLOAD_AUTO_CONCURRENCY_THRESHOLD payloads will continue to break:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merging this as hotfix to be included in release!
Proposed changes
Closes #4993
Checklist