牛骨文教育服务平台(让学习变的简单)
博客笔记
20
2017-06
用字典暴力破解ZIP压缩文件密码 2017-06-20
本例子使用Python 3.6版本 #coding=UTF-8 """ 用字典暴力破解ZIP压缩文件密码 """ import zipfile import optparse from threading import Thread def extractFile(zFile, password): try:
27
2012-07
ZIP文件格式详解 2012-07-27
ZIP文件的总体格式           分文件头信息+文件压缩数据           中心目录+中心目录记录结束符               1.分文件头信息:            

			
				Zip文件解析与利用
Zip文件解析与利用 2017-08-30
我们知道android的apk文件实质就是一个zip文件,所以对于zip文件的研究是非常有必要的。 一、Zip文件结构 1、Zip文件可以包含多个使用不同压缩方式甚至不压
19
2017-05
zip 文件格式分析: 附实例介绍 2017-05-19
ZIP format Byte order: Little-endian Overall zipfile format: [Local file header + Compressed data [+ Extended local header]?]* [Central directory]* [End of central directory record] 1. Local file h

			
				ZIP文件格式分析
ZIP文件格式分析 2016-06-12
https://pkware.cachefly.net/webdocs/APPNOTE/APPNOTE-6.2.0.txt 在官方文档中给出的ZIP格式如下: Overall .ZIP file format: [local file header 1] [file data 1] [data descript
03
2017-02
zip明文攻击 2017-02-03
所谓明文攻击就是已经通过其他手段知道zip加密文件中的某些内容,比如在某些网站上发现它的readme.txt文件,或者其他文件,这时就可以尝试破解了,例如我
02
2018-05
Tp5.0完全开发手册学习(第五章 控制器) 2018-05-02
一、定义:ThinkPHP V5.0的控制器定义比较灵活,可以无需继承任何的基础类,也可以继承官方封装的 hinkController类或者其他的控制器类。二、实际路径:a
25
2016-01
thinkphp删除delete操作 2016-01-25
删除(Delete) 在ThinkPHP中使用delete方法删除数据库中的记录。 用法 delete($options=array()) 参数 options:为数组的时候表示操作表达式,通常由连贯操作完
11
2016-03
file_get_contents模拟GET/POST请求 2016-03-11
模拟GET请求: GET请求就是在访问URL的时候加上参数即可,我们首先使用http_build_query方法将数组转化为url参数,然后使用file_get_contents获取内容即可。 get.php

			
				iOS中对文件的操作 (NSSearchPathForDirectoriesInDomains)
iOS中对文件的操作 (NSSearchPathForDirectoriesInDomains) 2015-01-06
iOS中NSSearchPathForDirectoriesInDomains函数iOS中NSSearchPathForDirectoriesInDomains函数参数 NSDocumentDirectory, NSDocumentationDirectory, NSDownloadsDirectory的意义,刚学iOS对他的一