Skip to content

Commit

Permalink
Empire 3.6.3 changelog updates (#424)
Browse files Browse the repository at this point in the history
* fixed byte error in parse_mimikatz

* updated changelog
  • Loading branch information
Cx01N authored Dec 18, 2020
1 parent e11fea9 commit 033021e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.2
3.6.3
8 changes: 8 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
12/18/2020
------------
- Version 3.6.3 Master Release
- Added save path to download file message - #414 (@meldridge)
- Updated installation file formatting - #410 (@Pernat1y)
- Fixed python 3.9.1 issue with deprecated base64 function - #422 (@brimstone)
- Fixed dump creds and hash not being logged in credentials properly - #423 (@Cx01N)

11/27/2020
------------
- Version 3.6.2 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 @@ -18,7 +18,7 @@

from flask_socketio import SocketIO

VERSION = "3.6.2 BC Security Fork"
VERSION = "3.6.3 BC Security Fork"

from pydispatch import dispatcher

Expand Down
2 changes: 1 addition & 1 deletion lib/common/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def parse_mimikatz(data):
krbtgtHash = lines[x + 2].split(b":")[1].strip()
break

if krbtgtHash != "":
if krbtgtHash != b"":
creds.append(("hash", domain.decode('UTF-8'), "krbtgt", krbtgtHash.decode('UTF-8'), hostName.decode('UTF-8'), sid.decode('UTF-8')))
except Exception as e:
pass
Expand Down

0 comments on commit 033021e

Please sign in to comment.