I am currently testing a webapplication that is sanitizing user input by html entity encoding special characters.
E.g. <script>alert(1)</script> becomes <script>alert(1)</script>
also the & symbol gets encoded to &
Now I need to figure out how i can bypass these filters in order to trigger XSS here.