fuzzing.http.parameter¶
- class asdfuzz.http.parameter.Parameter(key: bytes | None, value: bytes | None)¶
Bases:
objectA 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_base64parameter. After updatingjson_in_base64, callupdate_value_based_on_json_in_base64to reflect the JSON data in thevalueparameter.
- value: bytes | None¶
The value of the parameter (part after the equals-sign). Can be empty.