最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
织梦DedeCMS投票漏洞解决方法
时间:2022-06-25 19:34:08 编辑:袖梨 来源:一聚教程网
打开/include/dedevote.class.php文件,查 找
| 代码如下 | 复制代码 |
|
$this->dsql->ExecuteNoneQuery("UPDATE `#@__vote` SET totalcount='".($this->VoteInfos['totalcount']+1)."',votenote='".addslashes($items)."' WHERE aid='".$this->VoteID."'"); 修改为 $this->dsql->ExecuteNoneQuery("UPDATE `#@__vote` SET totalcount='".($this->VoteInfos['totalcount']+1)."',votenote='".mysql_real_escape_string($items)."' WHERE aid='".mysql_real_escape_string($this->VoteID)."'"); |
|
注:
* addslashes() 是强行加;
* mysql_real_escape_string() 会判断字符集,但是对PHP版本有要求;(PHP 4 >= 4.0.3, PHP 5)
最好直接使用addslashes同时要查看你php是否默认打开了addslashes这个自动功能哦,如果有了我们就不用加了。
相关文章
- 英语学习软件哪款好用-高效学英语的APP推荐 05-28
- 大道仙途开荒期神通搭配推荐 05-28
- 使用MCP框架:一句指令快速构建CRUD功能页面 05-28
- 阿提卡之怒上线时间 阿提卡之怒公测日期与开服时间详解 05-28
- 《三国志战略版》T0级别富贵骑阵容解析 05-28
- 基于uniapp的微信小程序自定义tabBar开发指南 05-28