diff --git a/VERSION b/VERSION index 1981190..f280719 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.8.0 +3.8.1 diff --git a/changelog b/changelog index 26eb786..85adfc8 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,8 @@ +3/22/2021 +------------ +- Version 3.8.1 Master Release + - Fixed http_hop listener options not being copied properly (@Cx01N) + 3/7/2021 ------------ - Version 3.8.0 Master Release diff --git a/lib/common/empire.py b/lib/common/empire.py index 00f567b..9e00386 100755 --- a/lib/common/empire.py +++ b/lib/common/empire.py @@ -19,7 +19,7 @@ from datetime import datetime, timezone from flask_socketio import SocketIO -VERSION = "3.8.0 BC Security Fork" +VERSION = "3.8.1 BC Security Fork" from pydispatch import dispatcher diff --git a/lib/listeners/http.py b/lib/listeners/http.py index 49e0023..edf0346 100755 --- a/lib/listeners/http.py +++ b/lib/listeners/http.py @@ -1197,7 +1197,7 @@ try: hopListener = helpers.get_listener_options(hopListenerName) tempListenerOptions = copy.deepcopy(listenerOptions) - tempListenerOptions['Host']['Value'] = hopListener['Host']['Value'] + tempListenerOptions['Host']['Value'] = hopListener.options['Host']['Value'] except TypeError: tempListenerOptions = listenerOptions