(self)
| 778 | output().fuzzed(path + name, "", ("", opt1, opt2)) |
| 779 | |
| 780 | def help_fuzz(self): |
| 781 | print("File system fuzzing: fuzz <category>") |
| 782 | print(" fuzz path - Explore fs structure with path traversal strategies.") |
| 783 | print(" fuzz write - First put/append file, then check for its existence.") |
| 784 | print(" fuzz blind - Read-only tests for existing files like /etc/passwd.") |
| 785 | |
| 786 | options_fuzz = ("path", "write", "blind") |
| 787 |