fuzzing.http.form_data

class asdfuzz.http.form_data.FormData(key: bytes, value: bytes)

Bases: object

A single key-value pair of form data in the HTTP data section of the request.

fuzz = True

Whether to fuzz this form data.

key: bytes

The key of the form data (part before the equals-sign)

value: bytes

The value of the form data (part after the equals-sign)