mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-08 05:50:58 -07:00
Set to use TLSv1 instead of SSLv3
This commit is contained in:
parent
4906e7dbb7
commit
7be76336d6
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