毕竟丰富的第三方库是python的优势所在,为了更加方便的安装第三方库,使用pip命令,我们需要进行相应的安装。 1、安装pip前需要前置安装setuptools 命令如下: wget --no-check-certificate https://pypi.python.org/packages/s ...
分类:
系统相关 时间:
2018-07-05 21:23:44
阅读次数:
164
翻译自: "ngx.ssl Lua API for controlling NGINX downstream SSL handshakes" 1. 概要 2. 描述 该 Lua 模块提供 API 函数来控制类似 ssl_certificate_by_lua (ngx_lua 模块) 等上下文的 SS ...
分类:
其他好文 时间:
2018-07-03 22:34:22
阅读次数:
1945
http正常抓包,https则出现unknown 1.安装证书 Help->SSL Proxying->Install Charles Root Certificate 但是!!!装完并没有信任此证书。 信任证书步骤 Win+R输入mmc 打开文件->添加/删除管理单元,点击证书,添加到右侧,点击确 ...
分类:
Web程序 时间:
2018-07-01 10:33:16
阅读次数:
783
server { listen 443 default_server; server_name _; ssl on; ssl_certificate /etc/nginx/cert/aaaa.pem; ssl_certificate_key /etc/nginx/cert/aaaa.key; ret... ...
分类:
其他好文 时间:
2018-06-27 22:28:57
阅读次数:
169
1. 下载jdk:wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/ ...
分类:
系统相关 时间:
2018-06-24 00:58:16
阅读次数:
193
由于fiddler安装后默认只能抓取http请求,如果需要抓取https请求需要进行配置。配置方式:Tools >Options >HTTPS,勾选CaptureHTTPS CONNECTs、Decrypt HTTPS traffic 、ignore server certificate error ...
分类:
Web程序 时间:
2018-06-22 13:42:23
阅读次数:
244
实现如下:server?{
????listen 80;
????listen 443?ssl;
????server_name nirvana.test-a.gogen;
????ssl_certificate&nb
分类:
Web程序 时间:
2018-06-13 21:41:52
阅读次数:
1267
项目启动时,添加下面代码: 项目启动时,添加 public App() { ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) => true ...
分类:
其他好文 时间:
2018-06-13 17:23:34
阅读次数:
210
在尝试安装pip和setuptools时:出现错误 原因是因为: 请求时,会跳转页面到https://页面,而wget并没有做301跳转,导致出现403错误。 正确的使用方法是: 注意:其中是需要用到--no-check-certificate。因为使用wget下载HTTPS开头的网址域名,会去要求 ...
分类:
其他好文 时间:
2018-06-12 12:53:52
阅读次数:
6391
使用python通过selenium模拟打开chrome窗口报错 出现 "您使用的是不受支持的命令行标记:--ignore-certificate-errors ...
分类:
其他好文 时间:
2018-06-01 15:36:22
阅读次数:
378