首页 > CMS > 织梦DEDE > 正文

织梦Dedev5.6中的跨站漏洞的修复实例方法

2024-07-12 08:53:56
字体:
来源:转载
供稿:网友

注意:织梦Dedev5.6 中的跨站漏洞的修复方法。

修改templets/default/search.htm文件第43行,找到

 

{dede:pagelist listsize='4'/}

修改为

{dede:pagelist listsize='4' function=RemoveXSS(@me)/}

修改member/index_do.php文件第5行,找到

require_once(DEDEINC.'/dedetemplate.class.php');

在下面添加

$gourl=empty($gourl)? urlencode(GetCurUrl()) : RemoveXSS($gourl);修改member/index.php文件第3行,找到if(empty($uid)) { $$uid = ''; }

修改为

$uid=empty($uid)? "" : RemoveXSS($uid);

 修改方法很简单,大家可以测试下,希望武林网整理的内容能够帮助到大家。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表