Wesley13 Wesley13
3年前
SQLMAP命令详解
Optionsversion:显示当前sqlmap的版本号h:显示帮助信息hh:显示详细的帮助信息vVERBOSE:详细级别,VERBOSE为数字,默认为1TargetdDIRECT:直接连接到数据库uURL或urlURL:目标地址(URL)
Wesley13 Wesley13
3年前
java生成图形验证码
首先,需要生成验证码字符串,方式很多,下面提供一种,根据指定源的方式来生成验证码/使用系统默认字符源生成验证码@paramverifySize验证码长度@return/publicstaticStringgenera
git常用命令
关注公众号QXF069克隆版本:gitclone path路径<directory 若默认则是文件的名字。查看远程版本库的地址  gitremotev|verbose将本地版本库和远程URL关联起来gitremoteaddtbranch<name(origin)<RepositoryU
Stella981 Stella981
3年前
Spring Boot 数据库无法验证连接
SpringBoot2项目,使用SpringDataJPA管理数据库,默认使用HikariCP连接池经常出现警告:2019052514:13:55.231WARN26204\0.02000exec7\com.zaxxer.hikari.pool.PoolBase:HikariPool1Fail
Stella981 Stella981
3年前
Redis内存碎片优化参数
infomemory参数简介used\_memory\_human:262.89Mused\_memory\_rss:267489280mem\_fragmentation\_ratio:0.97(Redis在编译时便会指定内存分配器;内存分配器可以是libc、jemalloc或者tcmalloc,默认是jemalloc。)used\
Wesley13 Wesley13
3年前
ubuntu下Apache+PHP+MySQL配置
Apache的配置:  sudoaptgetinstallapache2;  安装完成后,网站根目录默认为/var/www/html/  重启服务器:sudo/etc/init.d/apache2restartphp的配置:  安装aptgetinstallphp7.0libapache2modphp7.0  
Wesley13 Wesley13
3年前
CSS2样式表(属性·定位)
1、position 语法:position:static|absolute|fixed|relative取值:static:默认值。无特殊定位,对象遵循HTML定位规则absolute:将对象从文档流中拖出,使用left,right,top,bottom等属性相对于其最接近
Stella981 Stella981
3年前
Mongodb安装与基础配置(centos7)
说明本教程使用软件,使用默认端口,(需要开启27017端口)mongodblinuxx86\_64rhel703.4.4.tgzMongodb官网:https://www.mongodb.com/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Flin
Easter79 Easter79
3年前
Systemverilog for design 笔记(四)
转载请标明出处数组、结构体和联合体1. 结构体(struct)1.1. 结构体声明结构体默认是变量,也可以声明为线网varstruct {//通过var进行结构体变量声明logic\31:0\a,b;
Stella981 Stella981
3年前
OncePerRequestFilter的作用
在spring中,filter都默认继承OncePerRequestFilter,但为什么要这样呢?OncePerRequestFilter顾名思义,他能够确保在一次请求只通过一次filter,而不需要重复执行。publicfinalvoiddoFilter(ServletRequestrequest,ServletResponse