myform:
<input name="submit_active" id="submit_active" class="submit_active cancel_submit" type="submit" value="SUBMIT">
post data:
POST:<QueryDict: { u'submit_active': [u'WY\u015aLIJ'], u'agreeToTerms': [u'yes'], u'County': [u'West Midlands'],u'debitCardType': [u'VISA Delta']}>,
Browser:
Mozilla/5.0 (Windows NT 6.0) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.52 Safari/536.5
I don’t know how the value of submit button changed to u’WY\u015aLIJ’.For Around 50 different user u’submit_active’ the same value [u’WY\u015aLIJ’] is coming in post data.Is this related to any specific browser issue?
Are you supporting users who might have translated the page? “WYŚLIJ” means “SEND” in Polish (according to Google translate).
Note that the name of the button will only be present in the request collection if it is the button that was clicked. The value of the button usually isn’t that important when analyzing the request.