Added missing import

websockets-multiuser
xorrior 2017-11-02 22:19:07 -04:00
parent 7fe8c33ae8
commit 8f3570b390
3 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import os
import ssl
import time
import copy
import sys
from pydispatch import dispatcher
from flask import Flask, request, make_response
# Empire imports

View File

@ -5,6 +5,7 @@ import os
import ssl
import time
import copy
import sys
from pydispatch import dispatcher
from flask import Flask, request, make_response
@ -636,6 +637,7 @@ class Listener:
certPath = os.path.abspath(certPath)
# support any version of tls
pyversion = sys.version_info
if pyversion[0] == 2 and pyversion[1] == 7 and pyversion[2] >= 13:
proto = ssl.PROTOCOL_TLS
elif pyversion[0] >= 3:

View File

@ -5,6 +5,7 @@ import os
import ssl
import time
import copy
import sys
from pydispatch import dispatcher
from flask import Flask, request, make_response
@ -618,6 +619,7 @@ class Listener:
certPath = os.path.abspath(certPath)
# support any version of tls
pyversion = sys.version_info
if pyversion[0] == 2 and pyversion[1] == 7 and pyversion[2] >= 13:
proto = ssl.PROTOCOL_TLS
elif pyversion[0] >= 3: