0x00 实验环境 攻击机:Win 10 靶机也可作为攻击机:Ubuntu18 (docker搭建的vulhub靶场) 0x01 影响版本 标志:/index.php 版本:thinkphp2.x 简介:在ThinkPHP 2.x版本中,使用preg_replace的/e模式匹配路由: $res = ...
分类:
Web程序 时间:
2021-04-15 12:45:30
阅读次数:
0
1、在任意位置建一个空文件夹; 2、打开vscode,定位到刚才新建的文件夹; 点击左下角位置 弹出 3、输入npm install vue 展开刚才新建的项目 4、测试一下项目是否搭建成功; 新建一个index.html; 输入感叹号,直接回车; 就生成了html模板 新建一个vue小demo; ...
分类:
其他好文 时间:
2021-04-15 12:43:16
阅读次数:
0
# 1. 选择排序:循环找最小值,依次放在左侧 def select_sort(arr): for i in range(len(arr)-1): min_index = i for j in range(i+1, len(arr)): if arr[j] < arr[min_index]: min ...
分类:
编程语言 时间:
2021-04-15 12:18:58
阅读次数:
0
You have a card deck of n cards, numbered from top to bottom, i. e. the top card has index 1and bottom card — index n. Each card has its color: the 𝑖 ...
分类:
其他好文 时间:
2021-04-15 12:03:00
阅读次数:
0
一、背景 今天看到组内项目中有这样一段代码 ,第一反应是局部变量 index 太奇怪了,当然也不能说这样写是错的,只是个人强迫症看着很难受... 1 for _, index := range entities { 2 key := index.TemplateId 刚好借此机会,梳理下 Go 的 ...
分类:
其他好文 时间:
2021-04-13 12:32:49
阅读次数:
0
GitHub地址,猛戳:https://github.com/zxing/zxing API文档,猛戳:https://zxing.github.io/zxing/apidocs/index.html 介绍文档,猛戳:https://zxing.github.io/zxing/ https://ww ...
分类:
其他好文 时间:
2021-04-13 12:22:51
阅读次数:
0
现在的大多数网站都有校验,以及信息提示:为了给用户更好的体验可以不用alert提示消息,采用jQuery提示完消息,自动消失。 CSS <style> #tip_message { z-index: 9999; position: fixed; left: 0; top: 40%; text-ali ...
分类:
Web程序 时间:
2021-04-12 12:47:55
阅读次数:
0
1、ElementUi3框架 npm i element3 -S 引入框架 --main.js import 'element3/lib/theme-chalk/index.css' import { createApp } from 'vue' import Element3 from 'elem ...
分类:
其他好文 时间:
2021-04-12 12:31:47
阅读次数:
0
参考下面的连接 https://www.cnblogs.com/mojita/p/12011800.html ...
分类:
其他好文 时间:
2021-04-12 12:18:59
阅读次数:
0
为什么选择左深连接树 对于n个表的连接,数量为卡特兰数,近似$4^n$,因此为了减少枚举空间,早期的优化器仅考虑左深连接树,将数量减少为$n!$ 但为什么是左深连接树,而不是其他样式呢? 如果join算法为index join或者hash join,当两张表进行连接的时候,需要为左表建立哈希映射或者 ...
分类:
数据库 时间:
2021-04-12 12:06:32
阅读次数:
0