====== XSS Testing ====== Cross-site scripting is high-frequency, chains well with CSRF and IDOR, and is worth testing on every input. ===== Testing Process ===== - Test basic HTML injection -- can you input ''

'', '''', '''' without filtering? - Check encoding -- reflected as ''<script>'' or ''%3Cscript%3E''? Test double encoding: ''%253C'', ''%26lt;'' - Reverse engineer the filter -- blocking complete tags only? Try unclosed tag: '''', '''' work? '' <%00script>alert(1)