Fixed hardcoded certpath
parent
c2b155202b
commit
f6e9ee8fff
|
@ -839,8 +839,8 @@ def send_message(packets=None):
|
||||||
certPath = listenerOptions['CertPath']['Value']
|
certPath = listenerOptions['CertPath']['Value']
|
||||||
host = listenerOptions['Host']['Value']
|
host = listenerOptions['Host']['Value']
|
||||||
if certPath.strip() != '' and host.startswith('https'):
|
if certPath.strip() != '' and host.startswith('https'):
|
||||||
context = ("%s/data/empire.pem" % (self.mainMenu.installPath), "%s/data/empire.pem" % (self.mainMenu.installPath))
|
certPath = os.path.abspath(certPath)
|
||||||
app.run(host=bindIP, port=int(port), threaded=True, ssl_context=context)
|
app.run(host=bindIP, port=int(port), threaded=True, ssl_context=(certPath,certPath))
|
||||||
else:
|
else:
|
||||||
app.run(host=bindIP, port=int(port), threaded=True)
|
app.run(host=bindIP, port=int(port), threaded=True)
|
||||||
|
|
||||||
|
@ -881,4 +881,4 @@ def send_message(packets=None):
|
||||||
self.threads[name].kill()
|
self.threads[name].kill()
|
||||||
else:
|
else:
|
||||||
print helpers.color("[!] Killing listener '%s'" % (self.options['Name']['Value']))
|
print helpers.color("[!] Killing listener '%s'" % (self.options['Name']['Value']))
|
||||||
self.threads[self.options['Name']['Value']].kill()
|
self.threads[self.options['Name']['Value']].kill()
|
||||||
|
|
Loading…
Reference in New Issue