app

Entrypoint of the typer app. See the documentation in the help sections of every parameter for more information, or run python -m asdfuzz --help.

class asdfuzz.app.RequestMenuItem(request: Request)

Bases: object

Simple wrapper over a Request object. Adds a selected field.

request: Request

The request that will be fuzzed if this menu item is selected.

selected = True

Determines whether the request will be fuzzed.

asdfuzz.app.main(filename: ~pathlib.Path | None = <typer.models.OptionInfo object>, zap_export: ~pathlib.Path | None = <typer.models.OptionInfo object>, fetch_nodejs: ~pathlib.Path | None = <typer.models.OptionInfo object>, wordlist_file: ~pathlib.Path | None = <typer.models.OptionInfo object>, port: int = <typer.models.OptionInfo object>, https: bool = <typer.models.OptionInfo object>, filter_hostname_endswith: str | None = <typer.models.OptionInfo object>, delay_seconds: float = <typer.models.OptionInfo object>, directories: bool = <typer.models.OptionInfo object>, parameters: bool = <typer.models.OptionInfo object>, cookies: bool = <typer.models.OptionInfo object>, form_data: bool = <typer.models.OptionInfo object>, json_data: bool = <typer.models.OptionInfo object>, add_header: str | None = <typer.models.OptionInfo object>, confirmation: bool = <typer.models.OptionInfo object>, output_directory: ~pathlib.Path = <typer.models.OptionInfo object>, debug: bool = <typer.models.OptionInfo object>)