Tagged Questions
0
votes
0answers
13 views
python ssl authentification's problems
I'm trying to make an ssl connection with an authentification using certificate between two softwares (one server, one client). I get my code from here : http://docs.python.org/2/library/ssl.html
...
0
votes
0answers
30 views
how to write a HTTPS tunnel server in python socket?
I am writing a HTTPS proxy server in python,
it should receive everything from client, send to the target server, and vice versa.
I found when I use Squid, client will first send a HTTP CONNECT ...
0
votes
0answers
40 views
How to enable SSL for the built-in WSGI server from Python?
I run a WSGI application from within my Python file, using the make_server command.
(I don't know if this is a good practice or whether it is more common to setup Apache or nginx for this purpose.)
...
-2
votes
1answer
30 views
Python error on Google app engine app [closed]
This is the error screenshot when I tried to deploy my python app on GAe.
Anyone with solutions reply !
I am writing google doc link of error.
please go through it!
...
0
votes
1answer
51 views
Can portions of a python web app be secure while others are not? [duplicate]
I am looking at switching to python/django for my web development. For some of the application I would need to port I have admin sections of the site being served over SSL while the main interface is ...
0
votes
0answers
29 views
Python - xmpp message getting ssl error
I have tried this with XMPPPY installed and I get this error and can't figure out why...
import sys,os
import xmpp as xmpp
jid=xmpp.protocol.JID('FromUsername@ServerName')
...
0
votes
0answers
28 views
PyQt4 QTcpServer handling SSL connections
I am very new to Python and in fact all programming, but I'm trying to make a GUI with PyQt4 that receives ssl connections from a server.
Qt seems to only offer a TCP server to accept connections. ...
1
vote
1answer
85 views
Example Apache Thrift service which uses HTTPS, in Python
I have been able to find examples for how to implement services using Apache Thrift which use SSL as transport .. in Java. But not in Python.
I would like to use Apache Thrift to generate the ...
1
vote
1answer
172 views
pycurl https error: unable to get local issuer certificate
>>> import pycurl
>>> c = pycurl.Curl()
>>> c.setopt(c.URL, 'https://quora.com')
>>> c.perform()
Traceback (most recent call last):
File "<stdin>", line ...
4
votes
0answers
74 views
Tweepy 2.0 hanging on ssl do_handshake()
I have a long running Twitter scraping script that occasionally hangs with stack traces ending in
"/usr/lib/python2.7/ssl.py", line 305: self._sslobj.do_handshake()
My question is "why?" and "what ...
0
votes
1answer
66 views
Imaplib on Google App Engine Python
Is there any way to support imaplib of python in google app engine.
I want to access gmail inbox using google app engine in python. The other way also exist to do this task. But I want it to do with ...
0
votes
0answers
21 views
Using SocksiPy with SSL
I'm trying to use SocksIPy with ssl module (from stdlib) to grab a site's remote certificate but SocksIPy won't play with ssl.
The below code will connect to check.torproject.org and state we are not ...
1
vote
3answers
54 views
I setup https, but data still response to client without certificate
I am developing an iOS app, and I want the data return by my server can only be read by my app.
So, I create self-signed certificate, and setup https in Tornado like this:
http_server = ...
0
votes
1answer
197 views
Python SSL example from docs gives “Connection reset by peer” error
I'm trying to run the example code provided in the documentation for the ssl module here: http://docs.python.org/2/library/ssl.html#client-side-operation
The server-side code is similar to the ...
1
vote
0answers
26 views
Python + SSL + Require SSL IIS option
I'm trying to solve following problem:
I have IIS on my production server with valid wildcard ssl certificate.
The site binded to both of somedomain.com:80 and somedomain.com:443.
Also, I have ...
0
votes
0answers
42 views
Google Translate SSL Error with Threading in Python
I translating a pretty big text with google translate and to speed up the process in am calling the split up requests in threads. However, from time to time, the threads throw a SSL handshake error. ...
1
vote
1answer
33 views
Is there a Python API that will return precise cipher information about a TLS connection?
I'm trying to write a python (or Java) program that makes an https connection to a website and then returns properties of the https connection. I've been using python's ssl ...
0
votes
0answers
69 views
TLS echo server and echoclient in python crashes
I wrote a simple echo server client code in Python. I also generated keyfile.pem and certfile.pem, with commands:
openssl genrsa -des3 -out keyfile.pem 2048 and
openssl req -new -key keyfile.pem ...
0
votes
0answers
59 views
Disabling TLS renegotiation in Python
I'm implementing SSL connection in my web.py however the server fails security scanning and stuck on TLS Renegotiation DoS vulnerability.
Here is my code snippet:
import web
from web.wsgiserver ...
0
votes
0answers
117 views
Python, Selenium 2, Chromedriver, and unsecure https/SSL
I need some assistance in allowing chrome to accept bad SSL certs / unsecure pages while being driven by Chromedriver.
I've got the following setup on my script:
def setUp(self):
self.driver = ...
1
vote
0answers
105 views
Retrieve and validate x509 certificate chain
I am trying to determine the best way to retrieve and validate a chain of x509 certificates in Python.
If any certificates in the chain are invalid, I need to be able to identify which one ...
0
votes
1answer
65 views
SSL throwing error 185090050 while authentication via Oauth
I am trying use Google's Oauth to connect to Google adsense and am getting this error.
Any clues to fix it?
Anyone has faced such a issue before in python?
Traceback (most recent call last):
...
1
vote
0answers
47 views
python requests ssl error
I am trying to connect to host via ssl using requests module (http://docs.python-requests.org/en/latest/)
But my code:
import requests
requests.get("myurl", cert="hosts_certificate_file.crt")
...
0
votes
0answers
78 views
Disabling weak SSL Cipher CherryPy/Windows Server 2008
I am running CherryPy 3.2.2 (Python 2.7) as a web server under Windows server 2008.
While scanning with SSLLABS, the cipher suite "TLS_RSA_WITH_DES_CBC_SHA" is identified as weak.
How can I disable ...
0
votes
1answer
243 views
Sending SSL data over a TCP proxy connection in Python
I am facing the following scenario:
I am forced to use an HTTP proxy to connect to an HTTPS server. For several reasons I need access to the raw data (before encryption) so I am using the socket ...
1
vote
0answers
86 views
Import error with module _ssl for Python 3.3
I am programming in Python 3.3 on the latest version of Ubuntu. I am writing code for a project involving a library that works with Twitter. Here is the output from the terminal I have:
Traceback ...
1
vote
1answer
57 views
Boto keeps crashing in ssl.c
Once every 3 connections (roughly) boto crashes when we try to open a connection.
I've printed all the parameters just before it leaves python and on every connection the parameters are the same.
...
1
vote
0answers
53 views
SSL server in Jython [python code, java libraries?]
I need a very basic working example of SSL-enabled server (just a socket). Just returning "hello world" will be enough :)
The obstacle is that it should work in jython, and AFAIK jython has very ...
1
vote
1answer
131 views
How to validate the ssl server cirtificate in twisted ssl client
How do I validate the ssl server cirtificates in my twisted ssl client. I am very much beginner to the SSL , I have gone through the twisted ssl tutorials twisted_ssl_howto but still I am unclear ...
2
votes
1answer
188 views
Python Twisted, SSL Timeout Error
from twisted.web.resource import Resource
from twisted.web.server import Site, Session
from twisted.internet import ssl
from twisted.internet import reactor
class Echo(Resource):
def ...
0
votes
2answers
211 views
Can't connect to JIRA Python through REST api https url
I try to connect to a jira dev sandbox through https but it comes up with an SSL23_GET_SERVER_HELLO:unknown protocol error
This is the error log/stack trace. I try both ports 8080 and 443 but no joy.
...
0
votes
1answer
60 views
python warp socket fail
I'm trying to code a server using ssl, but there is an error I don't understand.
Here is the code :
import socket, ssl, select, sys, exceptions
def do_something(connstream, data):
if not data:
...
1
vote
2answers
129 views
Python - Socket Error, Address In Use
I'm currently attempting to setup a SiriServer (that's beside the point) on Xubuntu 12.10 x64, when I run the server python returns error
socket.error: [Errno 98] Address already in use.
The ...
0
votes
2answers
152 views
How to find the path to a SSL cert file?
I want to use Python Requests to get the contents of internal company web page (say, https://internal.com). I can see this page in the browser, and I can "view the certificate."
So now I want to get ...
0
votes
1answer
58 views
Inspecting HTTPS connections in Tornado (Python) to identify slowness
I'm using a 3rd party API pretty heavily in my Tornado app, and it seems like after eliminating some other inefficiencies, I'm still experiencing 300-600ms response times per request. My best guess is ...
1
vote
1answer
60 views
python enable ssl if client expects it
If there any way to know if a client expects server to enable SSL?
I am building a small SMTP server and have implemented SSL on 465 but some clients do not expect SSL so obviously connection fails.
...
1
vote
2answers
175 views
pyinstaller compiled file has ssl issue, error: 185090050
i've got some python code that's successfully running on my windows machine in the python ide and cmd prompt.
after i compile with pyinstaller (into one file) i get the following error:
Traceback ...
3
votes
1answer
73 views
PYTHON SSL - The difference between two ways to set up a ssl connection
I'm trying to set up a connection using ssl between a client and a server that I develop.
Base on this : http://bobthegnome.blogspot.fr/2007/08/making-ssl-connection-in-python.html
I created a simple ...
2
votes
1answer
713 views
Python Requests SSL issue
It's been days now since I started to look for a solution for this.
I've been trying to use requests to make an https request through a proxy with no luck.
Altough this is included in a bigger ...
0
votes
1answer
105 views
Python SMTP Server with SSL: handshake error
I use lib secure_smtpd for create SMTP server. When I generate certificate and use it for SSL connection I catch exception (for test I use Opera mail client and The Bat!):
SSLError: _ssl.c:489: The ...
3
votes
1answer
93 views
GEvent PyWSGI SSL is painfully slow
I'm using gevent.pywsgi server with SSL, and when using IE or Chrome, traffic amount is between 10x and 100x of content size, and transfer speed is very, very slow.
Firefox is ok with this though. If ...
2
votes
2answers
569 views
Intermittent “sslv3 alert handshake failure” under Python
I have a REST API written in Java running under JBoss. Recently we updated our JVM from 1.6 to 1.7. This started to cause issues with only our Python clients which were connecting. Intermittently, ...
-3
votes
1answer
326 views
Can't connect to web server using python HTTPSConnection()
I'm trying to connect to web server that uses HTTPS client certificate authentication. It works fine when i use curl:
leo@leo-VirtualBox:~/development/pki-client$ curl --key admin.privkey.pem --cert ...
1
vote
1answer
165 views
Twisted: Mixing ReconnectingClientFactory with SSL and have write() be “reliable”
I'm fairly new with both Python and Twisted so I may just not be understanding things properly but I seem to be stuck at a point where I need help.
What I want to do is use ReconnectingClientFactory ...
3
votes
2answers
167 views
Protocol error between Android and Python using SSL
This question has been asked, in various flavors, several times. Unfortunately, none of the answers have yielded a solution for me.
I am attempting to connect to a python web server (code to follow) ...
3
votes
2answers
371 views
Python SSL Socket Client Authentification
I'm trying to set up a server and client in python where the server authenticates clients using SSL with certificates. There are a lot of examples of SSL certificates online, but everything I've found ...
1
vote
1answer
168 views
Jython & Bottle : SSL-enabled web server
I have a web application (webservices) that combine Bottle web framework and Jython ... managed to run it on several web servers as supported on Bottle Documentation and all work fine. (such as Paste, ...
0
votes
0answers
33 views
How do I force or change a different SSL authentication for Requests?
I am trying to login and scrape web pages using the Requests library. While I have used Requests with success it does fail on some websites. From what I have read this is a Windows Python 3.3 bug ...
1
vote
1answer
60 views
Tornado MySQLDB SSL Connection
I’m using tornado and connecting to MySQL using MySQLDB. How I can connect to MySQL using SSL?
2
votes
3answers
557 views
Urrlib3/Requests: HTTPS problems on Google App Engine
Hi I am trying to make an HTTPS connection using requests on App Engine but I get the following error
NameError: name 'CERT_NONE' is not defined
It seems that urrlib3 cannot import ssl. Any ideas?
...