Let's say the Content Security Policy looks like this:
Content-Security-Policy: default-src 'self'; It's also not possible to upload JS files on the same origin.
Now there's an exploit to write arbitrary HTML on a page, including <script>. But <script> among other tags can't execute any scripts because of the CSP. When writing a report, should I still call it Cross Site Scripting (even though no script is executed) or would it be more accurate to say "HTML injection"?