I am pentesting a super strange website and was trying to get Stored XSS on their main website. After some hours of testing i found that it is possible to inject sucesfully without any encoding:
<img src="any" alt="any">
Cool right? the thing is i have tried +50 event handlers (some of them not even working for images) and 80% of them were blocked by the waf and the rest that were accepted (code 200 instead of 500) but were stripped from the response, even invalid ones. So
<img src="any" asdasd=asdasd alt="any"> Turns into --> <img src="any" alt="any">
So i was wondering, is there any possible way to exploit this without event handlers?
i know that isn't allowed for most browsers and will not trigger anything (correct me if I'm wrong here).