I have been searching for XSS and other vulnerability on multiple platforms and I have found that most of them filter it. However, in login forms, if I include “<” or “>” &without quotes], the text in between was not shown in the error message.
Here is what I typed in the username: Admin <script>alert('xss')</script> Hello
Here is what the error message shown:
- Error: The username Admin Hello is not registered on this site. If you are unsure of your username, try your email address instead.
I think that this is due to the input sanitizer, or it might be something else that idk.
Has anyone encountered such situation before?