Skip to content

Commit

Permalink
Merge pull request #67 from BC-SECURITY/sponsors-dev
Browse files Browse the repository at this point in the history
3.8.1 release
  • Loading branch information
vinnybod committed Mar 23, 2021
2 parents a7245a1 + c3b48b9 commit b6fc9d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8.0
3.8.1
5 changes: 5 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/common/empire.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/listeners/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -1197,7 +1197,7 @@ def handle_post(request_uri):
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

Expand Down

0 comments on commit b6fc9d7

Please sign in to comment.