首先新建一个Xss处理的帮助类 public static class XSSHelper { /// <summary> /// XSS过滤 /// </summary> /// <param name="html">html代码</param> /// <returns>过滤结果</return ...
分类:
Web程序 时间:
2020-07-15 01:28:29
阅读次数:
98
前台通过JS代码判断图片格式 var uploadpath = document.getElementById('uploadpath'); var simplepath = uploadpath.innerText; var pathsuffix = simplepath.substr(simpl ...
分类:
其他好文 时间:
2020-07-13 18:07:58
阅读次数:
64
string str;//文件路径int pos=str.find_last_of("/"); str=str.substr(0,pos); vector<string > filenames;while(_access(str.c_str(),0) 1){ pos=str.find_last_of ...
分类:
编程语言 时间:
2020-07-13 13:54:40
阅读次数:
94
###获取对象属性 get_object_vars 注意: get_class_vars 获取的属性的值是初始化的默认值,不是运行过程中,更改的值。 get the classname without the namespace function get_class_name($classname) ...
分类:
Web程序 时间:
2020-07-13 11:54:23
阅读次数:
67
双指针算法 LeetCode 3. 无重复字符的最长子串 while()是非法的,在外更新答案 class Solution { public int lengthOfLongestSubstring(String s) { char[] c = s.toCharArray(); int n = c ...
分类:
编程语言 时间:
2020-07-12 22:13:42
阅读次数:
73
0x01 进入题目 有一个上传页面 那看来就是要上传shell,然后来查看flag了。看一下页面给的代码 if($contents=file_get_contents($_FILES["file"]["tmp_name"])){ $data=substr($contents,5); foreach ...
分类:
系统相关 时间:
2020-07-12 19:03:23
阅读次数:
98
编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 1: 输入: ["flower","flow","flight"] 输出: "fl" 示例 2: 输入: ["dog","racecar","car"] 输出: "" 解释: 输入不存在公共前缀。 说明: ...
分类:
其他好文 时间:
2020-07-10 21:15:40
阅读次数:
65
给定一个字符串 S 和一个字符串 T,请在 S 中找出包含 T 所有字母的最小子串? 输入: S = "ADOBECODEBANC", T = "ABC" 输出: "BANC" public static void main(String[] args) { System.out.println(t ...
分类:
编程语言 时间:
2020-07-10 11:40:17
阅读次数:
74
1. 转换为:2020-7-9 var d = new Date() function date(date) { var nowdate = new Date(date).toLocaleDateString().replace(/\//g, '-') return nowdate } consol ...
分类:
Web程序 时间:
2020-07-09 12:19:08
阅读次数:
76
方法接口: public string substring(int beginIndex,int endIndex) 用于截取字符串 第一个参数指明字符串截取起始位置 第二个参数指明字符串截取终止位置, 最终截取的字符串不包含endIndex位置的字符 eg: "abcdefgh".substrin ...
分类:
编程语言 时间:
2020-07-09 12:09:15
阅读次数:
90