Centos7 下载地址: http://101.110.118.47/isoredirect.centos.org/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1611.iso 1. 挂载U盘 第一步,先插入U盘,打开终端使用下面的命令查看U盘是否已经moun ...
分类:
系统相关 时间:
2018-06-19 18:56:46
阅读次数:
188
制作系统U盘: 查看磁盘信息: 另外,Ubuntu 16.04.3 LTS镜像下载:https://www.ubuntu.com/download/desktop 参考: http://www.cnblogs.com/jkmiao/p/6248918.htmlhttp://blog.csdn.net ...
分类:
系统相关 时间:
2018-06-19 18:26:11
阅读次数:
344
1:查看MySQL的存储引擎信息 1.1 使用show engines命令。mysql> show engines;+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+|
分类:
数据库 时间:
2018-06-19 16:24:08
阅读次数:
895
burpsuite插件编写---sqlinjection0x00概要在安全测试过程中,大部分人会使用burpsuite的scanner模块进行测试,可以发现一些浅显的漏洞:比如xss、sqlinjection、cf、xxe、ArbitraryfileexistencedisclosureinAct、明文传输等。说到sqlinjection,测试人员都会有一种想法是否存在一款自动化工具,可以将某一网
分类:
数据库 时间:
2018-06-19 13:47:07
阅读次数:
213
这两个模块可以直接通过pip安装: 打开mysql创建几个表: pymysql基本连接示例: pymysql插入数据和事物的效果一样,可以实现回滚,自增id占用,必须提交才会生效: orm操作数据库新建一张表: 新增数据: 查询和格式化输出: 外键表的创建: 外键表的数据插入: 外键表的关联查询: ...
分类:
数据库 时间:
2018-06-18 13:24:45
阅读次数:
247
ChannelHandler是Netty应用程序的关键元素,所以彻底地测试他们应该是你的开发过程的一个标准部分。最佳实践要求你的测试不仅要能够证明你的实现是正确的,而且还要能够很容易地隔离那些因修改代码而突然出现的问题。这种类型的测试叫做单元测试。 其基本思想是,以尽可能小的区块测试你的代码,并且尽 ...
分类:
Web程序 时间:
2018-06-16 16:15:28
阅读次数:
160
Given a set of distinct integers, nums, return all possible subsets (the power set). Note: The solution set must not contain duplicate subsets. Exampl ...
分类:
编程语言 时间:
2018-06-16 11:58:03
阅读次数:
158
在工作中,我们用于捕捉性能问题最常用的就是打开慢查询,定位执行效率差的SQL,那么当我们定位到一个SQL以后还不算完事,我们还需要知道该SQL的执行计划,比如是全表扫描,还是索引扫描,这些都需要通过EXPLAIN去完成。EXPLAIN命令是查看优化器如何决定执行查询的主要方法。可以帮助我们深入了解M ...
分类:
其他好文 时间:
2018-06-13 11:58:51
阅读次数:
163
描述Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).You are given a target va ...
分类:
编程语言 时间:
2018-06-11 17:05:32
阅读次数:
173
Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each va ...
分类:
其他好文 时间:
2018-06-11 15:45:08
阅读次数:
166