OS: Windows 7 Home Basic
Python: ver. 3.6.0
Hey, I need to use SSLv3 with RC4-SHA (0x05) (Yes I know those are
unsecured) but my client is using it and I'm writing a server from scratch
in Python. My problem is following, when I try to select cipher
it doesn't raise any error, but when client tri
On Wed, Jun 14, 2017 at 4:40 PM, wrote:
> Hey, I'm "the server(I've written using ssl/socket)" and my client is
> using RC4-SHA, but I can't make the server to use it. I make "
> ciphers='RC4-SHA' " in the ssl.wrap_socket. Do I need to modify SSL file or
> something to make it work?
Had not rea
To Ray Cote:
Hey, I'm "the server(I've written using ssl/socket)" and my client is using
RC4-SHA, but I can't make the server to use it. I make " ciphers='RC4-SHA' " in
the ssl.wrap_socket. Do I need to modify SSL file or something to make it work?
--
https://mail.python.org/mailman/listinfo/
1: Are you 100% sure the server to which you are trying to connect supports
RC4-SHA?
2: If you have access to the server, turn on SSH debug mode to watch your
client try and connect.
I find that to be helpful in debugging many connection issues.
On Wed, Jun 14, 2017 at 4:16 PM, wrote:
> Hey, I
Hey, I want to use RC4-SHA in python, but when I try to use it, it doesn't get
used (If I do cipher() it says none(and handshake fails too)), I've tried to
modify the SSL library, but it didn't help at all(Maybe I did something wrong,
any help will be appreciated). Is there a way to use the RC4-