mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-21 05:43:35 -07:00
Merge pull request #74 from mubix/patch-2
Set to use TLSv1 instead of SSLv3
This commit is contained in:
commit
83ee962ab6
1 changed files with 1 additions and 1 deletions
|
@ -286,7 +286,7 @@ class SSLSock(ThreadingMixIn, TCPServer):
|
|||
from OpenSSL import SSL
|
||||
|
||||
BaseServer.__init__(self, server_address, RequestHandlerClass)
|
||||
ctx = SSL.Context(SSL.SSLv3_METHOD)
|
||||
ctx = SSL.Context(SSL.TLSv1_METHOD)
|
||||
|
||||
cert = os.path.join(settings.Config.ResponderPATH, settings.Config.SSLCert)
|
||||
key = os.path.join(settings.Config.ResponderPATH, settings.Config.SSLKey)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue