找回密码
 注册

便捷登录,只需一步

微信登录,快人一步

搜索
查看: 2997|回复: 2

大鱼专用打补丁覆盖

[复制链接]

1992

主题

6万

回帖

18万

积分

管理员

wfits币
2258 个
注册时间
2006-5-15
UID
6502
 楼主| 发表于 2021-11-28 11:55 | 显示全部楼层 |阅读模式
需要修改:
解决方案如下:
\source\class\discuz的discuz_application.php
查找
private function _xss_check() {         static $check = array('"', '>', '<', '\'', '(', ')', 'CONTENT-TRANSFER-ENCODING');         if(isset($_GET['formhash']) && $_GET['formhash'] !== formhash()) {                         system_error('request_tainting');         }         if($_SERVER['REQUEST_METHOD'] == 'GET' ) {                         $temp = $_SERVER['REQUEST_URI'];         } elseif(empty ($_GET['formhash'])) {                         $temp = $_SERVER['REQUEST_URI'].file_get_contents('php://input');         } else {                         $temp = '';         }         if(!empty($temp)) {                 $temp = strtoupper(urldecode(urldecode($temp)));                 foreach ($check as $str) {                                 if(strpos($temp, $str) !== false) {                                                 system_error('request_tainting');                                 }                 }         }         return true;}
替换为:
private function _xss_check() {    $temp = strtoupper(urldecode(urldecode($_SERVER['REQUEST_URI'])));    if (strpos($temp, '<') !== false || strpos($temp, '"') !== false || strpos($temp, 'CONTENT-TRANSFER-ENCODING') !== false) {        system_error('request_tainting');    }    return true;}


潍坊社区网旗下潍坊论坛、潍坊人才库,服务潍坊网友!
回复

使用道具 举报

1992

主题

6万

回帖

18万

积分

管理员

wfits币
2258 个
注册时间
2006-5-15
UID
6502
 楼主| 发表于 2021-11-28 21:00 | 显示全部楼层
find . -name '*.php' | xargs grep -i '$a($this->male)'
潍坊社区网旗下潍坊论坛、潍坊人才库,服务潍坊网友!
回复 支持

使用道具 举报

1992

主题

6万

回帖

18万

积分

管理员

wfits币
2258 个
注册时间
2006-5-15
UID
6502
 楼主| 发表于 2021-11-28 21:38 | 显示全部楼层
find -name '*.php' -newermt '2021-09-09' ! -newermt
'2021-09-10'

查找指定时间文件
潍坊社区网旗下潍坊论坛、潍坊人才库,服务潍坊网友!
回复 支持

使用道具 举报

您需要登录后才可以回帖 登录 | 注册 |

本版积分规则

Archiver|手机版|小黑屋|投诉举报|客服微信号:ppm0536|今潍网-潍坊论坛 ( 鲁ICP备14032312号 )

GMT+8, 2025-1-18 15:37 , Processed in 0.085733 second(s), 24 queries , Gzip On.

快速回复 返回顶部 返回列表