Is it possible to temporarily disable the XSS protection found in modern browsers for testing purposes?
I'm trying to explain to a co-worker what happens when one sends this to an XSS-vulnerable web form:
<script>alert("Danger");</script>
However, it appears that both Chrome and Firefox are preventing the XSS popup. Can I disable this protection so I can fully see the results of my actions?
MyPage.aspx?id=<script>alert('s');</alert>
would be sent as the request, but if any part of the code appears in script in the response it may be blocked (i.e. not executed) by the browser. – Byre