-
Notifications
You must be signed in to change notification settings - Fork 571
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
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
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
24 changes: 10 additions & 14 deletions
24
bbot/presets/web/lightfuzz-ssti-test.yml → bbot/presets/web/lightfuzz-min.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,24 @@ | ||
description: Discovery web parameters and lightly fuzz them for vulnerabilities, with more intense discovery techniques | ||
description: Discovery web parameters and lightly fuzz them for vulnerabilities, with only the most common vulnerabilities and minimal extra modules | ||
|
||
modules: | ||
- httpx | ||
- lightfuzz | ||
- robots | ||
- badsecrets | ||
- hunt | ||
- reflected_parameters | ||
|
||
blacklist: | ||
# Prevent spider from invalidating sessions by logging out | ||
- "RE:/.*(sign|log)[_-]?out" | ||
|
||
- portfilter | ||
|
||
config: | ||
url_querystring_remove: False | ||
url_querystring_collapse: True | ||
web: | ||
spider_distance: 6 | ||
spider_depth: 7 | ||
spider_distance: 2 | ||
spider_depth: 3 | ||
modules: | ||
lightfuzz: | ||
force_common_headers: False | ||
enabled_submodules: [ssti] | ||
disable_post: False | ||
enabled_submodules: [path,sqli,xss] # only look for the most common vulnerabilities | ||
disable_post: True | ||
excavate: | ||
retain_querystring: True | ||
|
||
blacklist: | ||
# Prevent spider from invalidating sessions by logging out | ||
- "RE:/.*(sign|log)[_-]?out" |
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
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