摘要:
下载python源码至服务器 https://registry.npmmirror.com/binary.html?path=python/ (根据自己的需要去下载对应的版本) wget http://npm.taobao.org/mirrors/python/3.7.5/Python-3.7.5. 阅读全文
摘要:
https://www.elastic.co/cn/downloads/past-releases/elasticsearch-6-1-2 阅读全文
摘要:
把fiddler根证书保存到桌面 使用openssl获取根证书hash值 openssl x509 -inform der -subject_hash_old -in FiddlerRoot.cer -noout # 返回 8bbe0e8d 重命名证书 openssl x509 -inform de 阅读全文
摘要:
locust任务等待有三种方式,分别是constant、between、constant_pacing. 他们的区别是: constant(2) # 任务执行完毕等待2秒开始下一任务between(1,7) # 任务执行完毕等待1-7秒(中间随机取值)开始下一任务constant_pacing(2) 阅读全文
摘要:
下载地址:http://slproweb.com/products/Win32OpenSSL.html linux源码 https://www.openssl.org/source/ 阅读全文
摘要:
背景:想要通过读取配置文件动态生成方法 实践1 使用关键字exec实现生成方法,参考 https://www.cnblogs.com/wjlv/p/14276827.html m = """ def fn(a,b): c=2 s=a+b+c return s """ exec(m) print(fn 阅读全文
摘要:
更新apt下载源 cd /etc/apt/&& cp sources.list sources.list.bk&& echo deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free > sources 阅读全文
摘要:
原文 https://zhuanlan.zhihu.com/p/104152479 阅读全文
摘要:
QSqlQuery 可以用来执行SQL语句和获得执行结果的。 QSqlQueryModel 提供了一个sql查询结果的只读数据模型。它从查询QSqlQueryModel获取数据。 可以方便的用于在QListView, QTableView, QTreeView等各种view上展示数据。 但它是只读的 阅读全文
摘要:
背景:页面偶现上传文件失败,在研测环境都无法复现。于是想通过脚本来多次请求尝试复现问题。 查看请求信息: 开始撸码 (想当然的添加content-type和cookies) import os import requests headers = {'Content-Type': 'multipart 阅读全文