Codebase list powershell-empire / 04a015f
New upstream version 3.8.1 Sophie Brun 3 years ago
4 changed file(s) with 8 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 3.8.0
0 3.8.1
0 3/22/2021
1 ------------
2 - Version 3.8.1 Master Release
3 - Fixed http_hop listener options not being copied properly (@Cx01N)
4
05 3/7/2021
16 ------------
27 - Version 3.8.0 Master Release
1818 from datetime import datetime, timezone
1919 from flask_socketio import SocketIO
2020
21 VERSION = "3.8.0 BC Security Fork"
21 VERSION = "3.8.1 BC Security Fork"
2222
2323 from pydispatch import dispatcher
2424
11961196 try:
11971197 hopListener = helpers.get_listener_options(hopListenerName)
11981198 tempListenerOptions = copy.deepcopy(listenerOptions)
1199 tempListenerOptions['Host']['Value'] = hopListener['Host']['Value']
1199 tempListenerOptions['Host']['Value'] = hopListener.options['Host']['Value']
12001200 except TypeError:
12011201 tempListenerOptions = listenerOptions
12021202