fuzzing.http.parameter

class asdfuzz.http.parameter.Parameter(key: bytes | None, value: bytes | None)

Bases: object

A parameter in the URL.

fuzz = True

Whether to fuzz this parameter.

key: bytes | None

The key of the parameter (part before the equals-sign).

update_value_based_on_json_in_base64()

Base64-urlencoded JSON data in the parameter can be fuzzed by modifying the json_in_base64 parameter. After updating json_in_base64, call update_value_based_on_json_in_base64 to reflect the JSON data in the value parameter.

value: bytes | None

The value of the parameter (part after the equals-sign). Can be empty.