Skip to content

Commit

Permalink
Add short paragraphs about reverse ranges and range formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpt-romankarwacik authored and rtpt-alexanderneumann committed Jan 24, 2024
1 parent 89f3183 commit ce6e049
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cmd/fuzz/help.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,20 @@ You can also request multiple ranges:
--header 'Cookie: sessionid=FUZZ' \
--hide-status 500 https://example.com/login/session
You can also start ranges from the end:
monsoon fuzz --range 10000-1 \
--header 'Cookie: sessionid=FUZZ' \
--hide-status 500 https://example.com/login/session
You can also specify the format of the range values using printf-style format
strings (in the following the values are preceeded with zeroes):
monsoon fuzz --range 10000-1 \
--range-format '%010d' \
--header 'Cookie: sessionid=FUZZ' \
--hide-status 500 https://example.com/login/session
Request 500 session IDs and extract the cookie values (matching case insensitive):
monsoon fuzz --range 1-500 \
Expand Down

0 comments on commit ce6e049

Please sign in to comment.