打开环境,发现依旧是sql注入 GitHub上有源码(https://github.com/team-su/SUCTF-2019/tree/master/Web/easy_sql) index.php源码 <?php session_start(); include_once "config.php ...
分类:
数据库 时间:
2020-02-23 20:35:01
阅读次数:
255
--根据函数别名排序 --排序规则,默认是升序 sleect LENGTH(NAME) nameLength from user ORDER BY nameLength DESC --特殊符号 特殊符号<=> 安全等于可以比较null和数值,正常比较null通过is null 和is not nul ...
分类:
数据库 时间:
2020-02-22 21:34:01
阅读次数:
99
查询rman备份集 SELECT TRIM(START_TIME||'#'), TRIM(END_TIME||'#'), TRIM(CASE OUTPUT_DEVICE_TYPE WHEN 'DISK' THEN 'DISK' WHEN 'SBT_TAPE' THEN 'SBT_TAPE' ELSE ...
分类:
数据库 时间:
2020-02-22 14:06:25
阅读次数:
76
说明: w-count固定为数字部分的class textarea-active为超出最大输入文字个数报错信息的class html 部分: <div class="wrap wrapper"> <div class="tp-form-textarea tp-form-input-unname"> ...
分类:
其他好文 时间:
2020-02-20 20:00:49
阅读次数:
75
示例: 输入: "the sky is blue", 输出: "blue is sky the". trim()去除字符串两头空格, "split()的用法" ...
分类:
其他好文 时间:
2020-02-19 22:30:13
阅读次数:
173
https://blog.csdn.net/IT_xiao_guang_guang/article/details/104299983 前言 1.发送手机验证码用的是网建的SMS接口( "http://sms.webchinese.cn/" ) 2.手机验证码简单的做了以下限制: ①发送验证码1分钟 ...
分类:
移动开发 时间:
2020-02-15 15:30:39
阅读次数:
88
PUBLIC errvalPUBLIC errmsgPUBLIC handleerrval=0errmsg=' ' *Sql Server 连接参数sourcename= 'test'user= 'sa'passwd='' ******** 连接* 为连接打开错误显示=SQLSetProp(0,"D ...
分类:
数据库 时间:
2020-02-15 13:36:43
阅读次数:
96
命名空间:System.Collections.Generic 先看一下官方说明:类提供了高级的设置操作。集是不包含重复元素的集合,其元素无特定顺序。 HashSet <T>对象的容量是对象可以容纳的元素数。当向对象添加元素时,HashSet <T>对象的容量会自动增加。 HashSet<Strin ...
分类:
Web程序 时间:
2020-02-15 09:40:42
阅读次数:
81
// 去除首尾空白字符 ['email', 'trim'] 或 ['email', 'filter', 'filter' => 'trim'] // 验证字段必填 ['email', 'required', 'message' => 'email不能为空'] // 赋予默认值 ['age', 'de ...
分类:
其他好文 时间:
2020-02-08 12:10:12
阅读次数:
94
len(str) 求长度 trim(str) 去掉两端空格 replace(str,a,b) 替换s中子串a,用b替代 left(str,a) 从左边取若干字符 right(str,a) 从右边取若干字符 mid(str,a,b) 从中间取若干字符 split(str,"s")把字符串按某个字符分割 ...
分类:
编程语言 时间:
2020-02-06 16:38:22
阅读次数:
70