-
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
Multiple bug fixes in query param fuzzing #4925
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
Before$ nuclei -u "https://example.com/test/view.action?ids=AA&ids=BB&ids=CC&ids=DD" -t ~/fuzzing-templates/xss/reflected-xss.yaml -fuzz -debug-req
__ _
____ __ _______/ /__ (_)
/ __ \/ / / / ___/ / _ \/ /
/ / / / /_/ / /__/ / __/ /
/_/ /_/\__,_/\___/_/\___/_/ v3.2.2
projectdiscovery.io
[INF] Current nuclei version: v3.2.2 (latest)
[INF] Current nuclei-templates version: v9.7.8 (latest)
[WRN] Scan results upload to cloud is disabled.
[INF] New templates added in latest release: 126
[INF] Templates loaded for current scan: 1
[WRN] Loaded 1 unsigned templates for scan. Use with caution.
[INF] Targets loaded for current scan: 1
[ERR] unknown type []string for value [AA BB CC DD]
[INF] [reflected-xss] Dumped HTTP request for https://example.com/test/view.action
GET /test/view.action HTTP/1.1
Host: example.com
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43
Accept: */*
Accept-Language: en
Accept-Encoding: gzip
[ERR] unknown type []string for value [AA BB CC DD]
[INF] No results found. Better luck next time! After fix / Improvements$ ./nuclei -u "https://example.com/test/view.action?ids=AA&ids=BB&ids=CC&ids=DD" -t ~/fuzzing-templates/xss/reflected-xss.yaml -fuzz -debug-req
__ _
____ __ _______/ /__ (_)
/ __ \/ / / / ___/ / _ \/ /
/ / / / /_/ / /__/ / __/ /
/_/ /_/\__,_/\___/_/\___/_/ v3.2.2
projectdiscovery.io
[INF] Current nuclei version: v3.2.2 (latest)
[INF] Current nuclei-templates version: v9.7.8 (latest)
[WRN] Scan results upload to cloud is disabled.
[INF] New templates added in latest release: 126
[INF] Templates loaded for current scan: 1
[WRN] Loaded 1 unsigned templates for scan. Use with caution.
[INF] Targets loaded for current scan: 1
[INF] [reflected-xss] Dumped HTTP request for https://example.com/test/view.action?ids=AA'"><64250&ids=BB&ids=CC&ids=DD
GET /test/view.action?ids=AA'"><64250&ids=BB&ids=CC&ids=DD HTTP/1.1
Host: example.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0
Accept: */*
Accept-Language: en
Accept-Encoding: gzip
[INF] [reflected-xss] Dumped HTTP request for https://example.com/test/view.action?ids=AA&ids=BB'"><64250&ids=CC&ids=DD
GET /test/view.action?ids=AA&ids=BB'"><64250&ids=CC&ids=DD HTTP/1.1
Host: example.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0
Accept: */*
Accept-Language: en
Accept-Encoding: gzip
[INF] [reflected-xss] Dumped HTTP request for https://example.com/test/view.action?ids=AA&ids=BB&ids=CC'"><64250&ids=DD
GET /test/view.action?ids=AA&ids=BB&ids=CC'"><64250&ids=DD HTTP/1.1
Host: example.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0
Accept: */*
Accept-Language: en
Accept-Encoding: gzip
[INF] [reflected-xss] Dumped HTTP request for https://example.com/test/view.action?ids=AA&ids=BB&ids=CC&ids=DD'"><64250
GET /test/view.action?ids=AA&ids=BB&ids=CC&ids=DD'"><64250 HTTP/1.1
Host: example.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0
Accept: */*
Accept-Language: en
Accept-Encoding: gzip
[INF] No results found. Better luck next time! |
tarunKoyalwar
changed the title
issue 4907 twice param
Multiple bug fixes in query param fuzzing
Mar 20, 2024
ehsandeep
approved these changes
Mar 25, 2024
2 tasks
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
_1
,_2
. seenuclei/pkg/fuzz/dataformat/form.go
Lines 23 to 33 in f1fc62e