2019年5月5日

查看cookie

摘要: 1.查看cookie 点击地址栏左侧(http左侧)图标,即可查看 2. Firefox查看缓存位置 在地址栏中输入: about:cache 3. Chrome修改cookie 使用插件Edit this cookie 阅读全文

posted @ 2019-05-05 12:44 fengZQ 阅读(753) 评论(0) 推荐(0)

2019年2月20日

python 日期运算

摘要: import datetime timeNow = datetime.datetime.now() # 当前日期 today = timeNow.strftime('%Y%m%d%H%M%S') # 昨天 yesterday = (timeNow - datetime.timedelta(days=1)).strftime('%Y%m%d%H%M%S') # 二十天前 twentyDaysAg... 阅读全文

posted @ 2019-02-20 17:50 fengZQ 阅读(2683) 评论(0) 推荐(0)

python项目在不同PC间环境迁移

摘要: https://www.cnblogs.com/zelos/p/7439599.html 阅读全文

posted @ 2019-02-20 11:07 fengZQ 阅读(966) 评论(0) 推荐(0)

2019年1月21日

Ubuntu 搭建Facebook ATC弱网测试环境 使用路由器搭建ATC

摘要: * 使用路由器搭建ATC * 一、安装Ubuntu https://www.ubuntu.com/download/desktop 二、路由器设置 1. 关闭路由器DHCP功能 2.更改路由器lan口ip(使其不为网关地址):192.168.1.11,将其更改为手动 3.用usb网口连接路由器与电脑 阅读全文

posted @ 2019-01-21 19:01 fengZQ 阅读(957) 评论(0) 推荐(0)

Ubuntu 更新源

摘要: 1. 备份:cp /etc/apt/sources.list /etc/apt/sources.list.old 2. 更新:vim /etc/apt/sources.lis 删除所有源地址,将下列地址copy进去,保存。 deb http://mirrors.ustc.edu.cn/ubuntu/ 阅读全文

posted @ 2019-01-21 18:58 fengZQ 阅读(265) 评论(0) 推荐(0)

2018年12月13日

Web安全测试检查单

摘要: 大类 细项 标记 备注 上传功能 绕过文件上传检查功能 P1 功能测试阶段覆盖 上传文件大小和次数限制 P1 注册功能 注册请求是否安全传输 P1 功能测试阶段覆盖 注册时密码复杂度是否后台检验 P1 功能测试阶段覆盖 激活链接测试 P1 功能测试阶段覆盖 重复注册 P1 批量注册问题 P1 登录功 阅读全文

posted @ 2018-12-13 10:28 fengZQ 阅读(460) 评论(0) 推荐(0)

2018年11月27日

requests模块上传文件

摘要: files = {'file': open('test11.log', 'rb')}res = requests.post( url, data={ 'key1': value, 'key2': value, 'key3': value }, files=files) 阅读全文

posted @ 2018-11-27 19:25 fengZQ 阅读(436) 评论(0) 推荐(0)

2018年10月24日

geckodriver.exe驱动大全 firefox官方镜像地址

摘要: 1. geckodriver.exe驱动大全 :https://github.com/mozilla/geckodriver/releases 2. firefox官方镜像地址:https://download-installer.cdn.mozilla.net/pub/firefox/releas 阅读全文

posted @ 2018-10-24 17:09 fengZQ 阅读(5067) 评论(0) 推荐(0)

2018年8月24日

git忽略某个文件

摘要: 1. git update-index -–assume-unchanged FileName 可以忽略文件2. git update-index –-no-assume-unchanged FileName 可以取消忽略文件 阅读全文

posted @ 2018-08-24 10:55 fengZQ 阅读(1713) 评论(0) 推荐(0)

2018年7月12日

xming Linux图形界面至Windows

摘要: 1. Windows机器安装xming 2. 在xming安装目录下修改X0.hosts文件,在其中添加Linux服务器ip地址,一个一个ip 3. 在Linux机器运行:export DISPLAY=192.168.X.X:0.0 阅读全文

posted @ 2018-07-12 21:09 fengZQ 阅读(521) 评论(0) 推荐(0)

导航