Implemented rate limit for shortscan cmd.#23
Open
soerlemans wants to merge 4 commits intobitquark:mainfrom
Open
Implemented rate limit for shortscan cmd.#23soerlemans wants to merge 4 commits intobitquark:mainfrom
soerlemans wants to merge 4 commits intobitquark:mainfrom
Conversation
Author
|
Changed rate limit value from float to integer. |
Author
|
@bitquark ping for review |
|
This sounds like a good addition. |
|
@soerlemans can we use this to send a request every 2 seconds? If not, it is probably better to introduce throttles so it can wait some seconds based on the user input in between each request. |
Author
Author
|
@irsdl I changed the rate limit flag to support fractals. But this would require more time to implement and this is a feature I have wanted for a long time. |
irsdl
added a commit
to irsdl/shortscan
that referenced
this pull request
Oct 21, 2025
irsdl
added a commit
to irsdl/shortscan
that referenced
this pull request
Oct 21, 2025
- Fixed merge conflict between PR bitquark#23 and PR bitquark#16 - Added case-insensitive matching for bin::$INDEX_ALLOCATION - Changed session identifier from (S(x)) to (S(d)) for WAF evasion - Implemented -R flag for relaxed match mode (tentative matches) * Useful for Jakarta/CFM files loaded via 8.3 filenames * Tentative matches shown in yellow with [tentative] label * JSON output includes 'tentative' field - Updated README with custom enhancements documentation - Added usage examples for new features - Code formatting improvements (gofmt)
irsdl
added a commit
to irsdl/shortscan
that referenced
this pull request
Oct 21, 2025
This custom version identifier reflects the enhanced fork with: - Applied upstream PRs (bitquark#16, bitquark#23, bitquark#24) - Custom enhancements (relaxed match mode, multiple wordlists, etc.) - WAF evasion improvements - Case-insensitive INDEX_ALLOCATION handling Version format: upstream_version-fork_identifier.increment Example: 0.9.2-irsdl.1 = based on upstream 0.9.2, irsdl fork iteration 1 Note: shortutil version remains 0.4 (unchanged from upstream)
This file contains hidden or 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
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.
Implemented rate limiting for short scan.
Let me know if you have any remarks pertaining to the feature implementation.
Another note it seems the source code has not been formatted using
go fmt?