上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 53 下一页
摘要: foreach ($sheetContent as $k => $v){ $arr['customerName'] = $v[0]; $arr['sex'] = $v[1]; $arr['typeId'] = $v[2]; $arr['customerPhone'] = $v[3]; $arr['s 阅读全文
posted @ 2020-06-02 09:47 御世制人 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 最近在挖各大src,主要以逻辑漏洞为主,想着总结一下我所知道的一些逻辑漏洞分享一下以及举部分实际的案例展示一下,方便大家理解。 主要从两个方面看,业务方面与漏洞方面。(接下来就从拿到网站的挖掘步骤进行逐一介绍各个逻辑漏洞) 一 、业务 注册: 1.短信轰炸/验证码安全问题/密码爆破/邮箱轰炸 上面这 阅读全文
posted @ 2020-05-29 16:07 御世制人 阅读(537) 评论(0) 推荐(0) 编辑
摘要: https://www.freebuf.com/vuls/149251.html *本文中涉及到的相关漏洞已报送厂商并得到修复,本文仅限技术研究与讨论,严禁用于非法用途,否则产生的一切后果自行承担。 *本文原创作者:小石,本文属FreeBuf原创奖励计划,未经许可禁止转载 不多哔哔 先看图 无图无真 阅读全文
posted @ 2020-05-29 15:54 御世制人 阅读(626) 评论(0) 推荐(0) 编辑
摘要: user www www; worker_processes auto; error_log /www/wwwlogs/nginx_error.log crit; pid /www/server/nginx/logs/nginx.pid; worker_rlimit_nofile 51200; ev 阅读全文
posted @ 2020-05-29 15:02 御世制人 阅读(284) 评论(0) 推荐(0) 编辑
摘要: function test($a=0,&$result=array()){ $a++; if ($a<10) { $result[]=$a; test($a,$result); } echo $a; return $result; 上面的例子非常简单,以a<10作为判断条件,条件成立,则把a赋给re 阅读全文
posted @ 2020-05-26 10:00 御世制人 阅读(133) 评论(0) 推荐(0) 编辑
摘要: vi ~/.gitconfig ~意思为当前用户根目录 编辑 [user] name = liudeyun email = liudeyun@test.com [credential] helper = manager [core] safecrlf = false autocrlf = false 阅读全文
posted @ 2020-05-15 16:07 御世制人 阅读(240) 评论(0) 推荐(0) 编辑
摘要: private function parseUpdate($data, $field,$table) { $sql = " update {$table} set "; //$keys = array_keys(current($data));print_r($keys);die; /* forea 阅读全文
posted @ 2020-05-12 08:59 御世制人 阅读(232) 评论(0) 推荐(0) 编辑
摘要: /*导出excel*/ public function download(){ error_reporting(E_ALL); date_default_timezone_set('Asia/Shanghai'); ini_set('memory_limit','300M'); set_time_l 阅读全文
posted @ 2020-05-09 11:45 御世制人 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 使用场景 当项目越来越庞大之后,不可避免的要拆分成多个子模块,我们希望各个子模块有独立的版本管理,并且由专门的人去维护,这时候我们就要用到git的submodule功能。 常用命令 git clone <repository> --recursive 递归的方式克隆整个项目 git submodul 阅读全文
posted @ 2020-04-29 13:31 御世制人 阅读(1342) 评论(0) 推荐(0) 编辑
摘要: 配置: $config['cache_open'] = true; $config['cache']['type'] = 'redis'; $config['redis']['prefix'] = 'sld_'; $config['redis']['master']['port'] = 6379; 阅读全文
posted @ 2020-04-09 16:09 御世制人 阅读(243) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 53 下一页