盲注时绕过过滤方法 一、=被过滤 1、可以使用通配符like或者REGEXP 比如想要查询id为8的数据一般会使用select * from users where id=8; 等于被过滤的话可以使用 或者<、> 或者!(<>)不不等于 使用between 二、引号被过滤 使用十六进制 把单引号的内 ...
分类:
其他好文 时间:
2020-08-27 11:46:24
阅读次数:
57
题目地址:632. 最小区间 You have k lists of sorted integers in ascending order. Find the smallest range that includes at least one number from each of the k li ...
分类:
其他好文 时间:
2020-08-26 17:10:59
阅读次数:
46
原文首发于微信公众号:jzman-blog,欢迎关注交流!MaterialDesign系列文章:MaterialDesign组件之FloatingActionButtonMaterialDesign组件之AppBarLayoutMaterialDesign组件之CollapsingToolbarLayout今天来看一下NavigationView的使用,NavigationView是一个标准的导航
分类:
其他好文 时间:
2020-08-24 16:53:41
阅读次数:
55
Python数据库连接池DBUtils详解 what's the DBUtils DBUtils 是一套用于管理数据库连接池的Python包,为高频度高并发的数据库访问提供更好的性能,可以自动管理连接对象的创建和释放。并允许对非线程安全的数据库接口进行线程安全包装。 DBUtils提供两种外部接口: ...
分类:
数据库 时间:
2020-08-24 16:39:28
阅读次数:
59
You are installing a billboard and want it to have the largest height. The billboard will have two steel supports, one on each side. Each steel suppor ...
分类:
其他好文 时间:
2020-08-19 19:53:32
阅读次数:
69
(1)查看当前时区 正确的应该是CST show variables like '%time_zone%'; (2)如果不是CST,需要修改配置文件 /etc/my.cnf 在[mysqld]中 添加 default-time-zone='+08:00' 最后: 只需完成这两步操作 ,此时查看MyS ...
分类:
数据库 时间:
2020-08-19 19:25:56
阅读次数:
108
//匹配所有 //var reg=/./; //匹配数字 //var reg=/\d/; //匹配非数字 //var reg=/\D/; //匹配字母数字下划线 //var reg=/\W/; //匹配def var reg=/[^0-9]/; //定义字符串 var str="abc"; //判断 ...
分类:
其他好文 时间:
2020-08-19 19:22:12
阅读次数:
80
MySQL常用命令或设置 参考手册: MySQL开发人员官网参考文档 一.MySQL命令行登录 mysql -h${主机名或主机IP} -P${端口} -u${用户名} -p ${数据库名}; # 回车之后再输入密码 mysql -h${主机名或主机IP} -P${端口} -u${用户名} -p${ ...
分类:
数据库 时间:
2020-08-18 15:39:50
阅读次数:
86
帮助命令 docker version # 显示docker的版本信息 docker info # 显示docker的系统信息,包括镜像和容器的数量 docker 命令 --help # 帮助命令 帮助文档的地址:https://docs.docker.com/engine/reference/ru ...
分类:
其他好文 时间:
2020-08-18 14:08:01
阅读次数:
91
Mysql 8.0 ERROR 1064 (42000)
分类:
数据库 时间:
2020-08-18 13:43:11
阅读次数:
81