Ejemplo n.º 1
0
 def find_cert(self, host, port, sni):
     if self.config.certfile:
         return self.config.certfile
     else:
         sans = []
         if self.config.upstream_cert:
             cert = certutils.get_remote_cert(host, port, sni)
             sans = cert.altnames
             host = cert.cn
         ret = certutils.dummy_cert(self.config.certdir, self.config.cacert, host, sans)
         time.sleep(self.config.cert_wait_time)
         if not ret:
             raise ProxyError(502, "mitmproxy: Unable to generate dummy cert.")
         return ret
Ejemplo n.º 2
0
 def find_cert(self, host, port, sni):
     if self.config.certfile:
         return self.config.certfile
     else:
         sans = []
         if not self.config.no_upstream_cert:
             try:
                 cert = certutils.get_remote_cert(host, port, sni)
             except tcp.NetLibError, v:
                 raise ProxyError(502, "Unable to get remote cert: %s"%str(v))
             sans = cert.altnames
             host = cert.cn.decode("utf8").encode("idna")
         ret = self.config.certstore.get_cert(host, sans, self.config.cacert)
         if not ret:
             raise ProxyError(502, "mitmproxy: Unable to generate dummy cert.")
         return ret
Ejemplo n.º 3
0
 def find_cert(self, host, port, sni):
     if self.config.certfile:
         return self.config.certfile
     else:
         sans = []
         if not self.config.no_upstream_cert:
             try:
                 cert = certutils.get_remote_cert(host, port, sni)
             except tcp.NetLibError, v:
                 raise ProxyError(502, "Unable to get remote cert: %s"%str(v))
             sans = cert.altnames
             host = cert.cn.decode("utf8").encode("idna")
         ret = certutils.dummy_cert(self.config.certdir, self.config.cacert, host, sans)
         time.sleep(self.config.cert_wait_time)
         if not ret:
             raise ProxyError(502, "mitmproxy: Unable to generate dummy cert.")
         return ret
Ejemplo n.º 4
0
 def test_get_remote_cert(self):
     assert certutils.get_remote_cert("127.0.0.1", self.port, None).digest("sha1")
Ejemplo n.º 5
0
 def test_get_remote_cert(self):
     assert certutils.get_remote_cert("127.0.0.1", self.port,
                                      None).digest("sha1")