Skip to content

Commit d71adb8

Browse files
authored
Merge pull request #2929 from blacklanternsecurity/update-docs
Automated Docs Update
2 parents a62462b + 4af25ea commit d71adb8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

docs/scanning/configuration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,8 @@ In addition to the stated options for each module, the following universal optio
433433
| modules.lightfuzz.disable_post | bool | Disable processing of POST parameters, avoiding form submissions. | False |
434434
| modules.lightfuzz.enabled_submodules | list | A list of submodules to enable. Empty list enabled all modules. | ['sqli', 'cmdi', 'xss', 'path', 'ssti', 'crypto', 'serial', 'esi'] |
435435
| modules.lightfuzz.force_common_headers | bool | Force emit commonly exploitable parameters that may be difficult to detect | False |
436+
| modules.lightfuzz.try_get_as_post | bool | For each GETPARAM, also fuzz it as a POSTPARAM (in addition to normal GET fuzzing). | False |
437+
| modules.lightfuzz.try_post_as_get | bool | For each POSTPARAM, also fuzz it as a GETPARAM (in addition to normal POST fuzzing). | False |
436438
| modules.medusa.snmp_versions | list | List of SNMP versions to attempt against the SNMP server (default ['1', '2C']) | ['1', '2C'] |
437439
| modules.medusa.snmp_wordlist | str | Wordlist url for SNMP community strings, newline separated (default https://raw.githubusercontent.com/danielmiessler/SecLists/refs/heads/master/Discovery/SNMP/snmp.txt) | https://raw.githubusercontent.com/danielmiessler/SecLists/refs/heads/master/Discovery/SNMP/common-snmp-community-strings.txt |
438440
| modules.medusa.threads | int | Number of communities to be tested concurrently (default 5) | 5 |

docs/scanning/presets_list.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,8 @@ Discover web parameters and lightly fuzz them for vulnerabilities, with more int
295295
lightfuzz:
296296
enabled_submodules: [cmdi,crypto,path,serial,sqli,ssti,xss,esi]
297297
disable_post: False
298+
try_post_as_get: True
299+
try_get_as_post: True
298300
```
299301

300302
Category: web
@@ -354,6 +356,7 @@ Discover web parameters and lightly fuzz them for vulnerabilities. Uses all ligh
354356
modules:
355357
lightfuzz:
356358
enabled_submodules: [cmdi,crypto,path,serial,sqli,ssti,xss,esi]
359+
try_post_as_get: True
357360
```
358361

359362
Category: web

0 commit comments

Comments
 (0)