My client is using Qualys to scan their site and their tool is reporting two XSS issues on a form I created.
One of the issues is with a radio buttons field with 'Enable "other" choice' checked.
<input name='input_19_other' type='text' value='Male <script>_q_q=random()</script>' onfocus='jQuery(this).prev("input").attr("checked", true); if(jQuery(this).val() == "Other") { jQuery(this).val(""); }' onblur='if(jQuery(this).val().replace(" ", "") == "") { jQuery(this).val("Other"); }' tabindex='104' />
The other issue is with a hidden input.
<input type='hidden' name='gform_ajax' value='form_id=7&title=&description= <script>_q_q=random()</script>' />
Is there a fix for this? Is this a known issue?