Python3:使用客户端证书身份验证从https服务器获取资源

时间:2014-07-29 07:19:32

标签: python http ssl python-3.x client-certificates

从https服务器获取html页面时遇到问题。通过客户端证书验证来保护对资源的访问(在浏览器中,我必须选择适当的证书来访问页面)。

我正在尝试使用python这样的http.client库:

import http.client
conn = http.client.HTTPSConnection('example.com', 443, key_file = 'tmp/private.pem', cert_file = 'tmp/public.pem')
conn.set_debuglevel(0)
conn.request('GET', '/index.htm')
result = conn.getresponse()
if result.status != http.client.ACCEPTED:
  pass
print(result.status, result.reason)
conn.close()

作为该计划的输出,我得到:403 Forbidden。我做错了什么?

请注意,我可以通过浏览器直接访问此资源。使用openssl命令(openssl pkcs12 -nocerts -nodes -in cert.p12 -out private.pemopenssl pkcs12 -nokeys -in cert.p12 -out public.pem)从该浏览器导出的pkcs12文件中提取私钥和公钥

1 个答案:

答案 0 :(得分:0)

由于到目前为止我还没有得到任何答案,我想与您分享我所做的以及我如何解决这个问题。

我尝试了this StackOverflow question中的代码示例,稍微将其修改为Python3:

from urllib.request import Request, urlopen, HTTPSHandler, build_opener
from urllib.error import URLError, HTTPError
import http.client

class HTTPSClientAuthHandler(HTTPSHandler):

  def __init__(self, key, cert):
    HTTPSHandler.__init__(self)
    self.key = key
    self.cert = cert

  def https_open(self, req):
    return self.do_open(self.getConnection, req)

  def getConnection(self, host, timeout=300):
    return http.client.HTTPSConnection(host, key_file=self.key, cert_file=self.cert)

opener = build_opener(HTTPSClientAuthHandler(private_key_file, public_key_file))
response = opener.open("https://example.com/index.htm")
print response.read()

它刚刚开始起作用。我仍然不知道如何解决我的原始问题,但至少我知道如何避免它。

希望它会有所帮助!