-
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
Fuzzing additions & enhancements #5139
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ehsandeep
requested changes
May 4, 2024
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.
- Misc format update:
[INF] [sqli-error-based] Fuzz points for http://127.0.0.1:8082/user [body:role] [POST]
- allow path to break values by separator and fuzz each separately
- allow part to be customizable with allow and deny and multiple values
- keep track of non matches and allow ignoring values which don't yield issues (example. path parameters after above change etc)
❯ ./nuclei -l list.txt -t template.yaml -dast -v
__ _
____ __ _______/ /__ (_)
/ __ \/ / / / ___/ / _ \/ /
/ / / / /_/ / /__/ / __/ /
/_/ /_/\__,_/\___/_/\___/_/ v3.2.5
projectdiscovery.io
[INF] Supplied input was automatically deduplicated (1 removed).
[VER] Started metrics server at localhost:9092
[INF] Current nuclei version: v3.2.5 (outdated)
[INF] Current nuclei-templates version: v9.8.5 (latest)
[WRN] Scan results upload to cloud is disabled.
[INF] New templates added in latest release: 142
[INF] Templates loaded for current scan: 1
[WRN] Loading 1 unsigned templates for scan. Use with caution.
[INF] Targets loaded for current scan: 12
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/11
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/9'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/4'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/8
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/10
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/5'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/3
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/2
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/7'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/12
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/1'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/6'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/8'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/10'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/5
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/2'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/3'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile/11'
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/4
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/7
[VER] [sqli-error-based] Sent HTTP request to http://localhost:8082/profile'/9
[VER] [sqli-error-based] Skipped /profile from parameter for http://localhost:8082/profile"/9 as found uninteresting 10 times With input
|
linux_path:
low:
- /etc/passwd
medium:
- ../etc/passwd
- ../../etc/passwd
high:
- ../../../etc/passwd
- ../../../../etc/passwd
- ../../../../../etc/passwd` Three agression are supported -
|
Ice3man543
changed the title
Fuzzing additions & enhancements (wip)
Fuzzing additions & enhancements
May 7, 2024
Mzack9999
approved these changes
May 8, 2024
tarunKoyalwar
approved these changes
May 21, 2024
ehsandeep
approved these changes
Jun 10, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Proposed changes
part: request
not working to allow fuzzing all applicable request parts-dfp
flag to display fuzz pointsparts
to fuzzing templates to allow specifying multiple target partsChecklist