File类:提供用于操作文件的静态方法。 FileInfo类:提供操作文件的属性和实例方法。 Directory类:提供用于操作目录的静态方法。 DirectoryInfo类:提供用于操作目录的实例方法,此类不能被继承。 简单来说,有Info这个词的类不是静态的,必须要实例化后才可以使用; 而没有这 ...
分类:
其他好文 时间:
2020-10-14 20:08:16
阅读次数:
19
checksec warmup_csaw_2016 Arch: amd64-64-little RELRO: Partial RELRO Stack: No canary found NX: NX disabled PIE: No PIE (0x400000) RWX: Has RWX segmen ...
分类:
其他好文 时间:
2020-10-10 17:07:34
阅读次数:
20
基本单词: file :文件 directory:文件夹 path:目录 静态成员变量 static String pathSeparator与系统相关的路径分隔符字符,为方便起见,表示为字符串。 static char pathSeparatorChar与系统相关的路径分隔符。 static St ...
分类:
其他好文 时间:
2020-10-08 19:05:37
阅读次数:
21
1、The Mysql Server mysqld is the MySQL server. 1.1、Configuring the Server a,查看Mysql Server options and configurable system variables mysqld --verbose ...
分类:
数据库 时间:
2020-10-06 20:47:04
阅读次数:
36
Pass-18源代码:1//index.php2$is_upload=false;3$msg=null;4if(isset($_POST[‘submit‘]))5{6require_once("./myupload.php");7$imgFileName=time();8$u=newMyUpload($_FILES[‘upload_file‘][‘name‘],$_FILES[‘upload_fi
分类:
Web程序 时间:
2020-10-05 22:09:13
阅读次数:
37
推荐使用网站:https://man.linuxde.net/ 1.man:man命令是Linux下的帮助指令,通过man指令可以查看Linux中的指令帮助、配置文件帮助和编程帮助等信息。 -a:在所有的man帮助手册中搜索; -f:等价于whatis指令,显示给定关键字的简短描述信息; -P:指定 ...
分类:
系统相关 时间:
2020-10-05 21:48:54
阅读次数:
32
-bash: nohup: command not found 1、查看本地是否有 which nohup 如果存在记录位置 通常位置为 /usr/bin/nohup 如果没有查询到位置 yum install coreutils 进行安装 然后配置 2、修改profile文件 位置--etc/pr ...
分类:
系统相关 时间:
2020-09-24 21:03:34
阅读次数:
71
常用的DOS命令 查看当前目录下的全部文件:dir 切换目录:cd(change directory) 返回上一级目录:cd.. 清理屏幕:cls(clear screen) 退出终端:exit 查看电脑ip:ipconfig 打开应用: 打开计算器:calc 打开画图:mspaint 打开txt: ...
分类:
其他好文 时间:
2020-09-18 00:32:11
阅读次数:
36
stringstring2binstring(stringstrSrc){if(strSrc.empty()){return"";}stringstrTemp="0x";stringstrDest;//去掉最开始的0x字符intiNumber=strSrc.find(strTemp);if(iNumber!=NO_FOUND){strSrc=strSrc.substr(2,strSrc.size(
分类:
其他好文 时间:
2020-09-17 23:19:09
阅读次数:
30