Skip to content

Commit

Permalink
Merge pull request #235 from BC-SECURITY/sponsors-dev
Browse files Browse the repository at this point in the history
4.1.3
  • Loading branch information
vinnybod authored Sep 28, 2021
2 parents 69b8732 + 643e201 commit def7d52
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.1.2
4.1.3
5 changes: 5 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
9/28/2021
------------
- Version 4.1.3 Master Release
- Fixed output from files throwing a error for the client (@Cx01N)

9/21/2021
------------
- Version 4.1.2 Master Release
Expand Down
2 changes: 1 addition & 1 deletion empire/client/src/menus/UseStagerMenu.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def execute(self):
output_bytes = base64.b64decode(response[self.selected]['Output'])
with open(f'empire/client/generated-stagers/{file_name}', 'wb') as f:
f.write(output_bytes)
print(print_util.color(f'[*] {file_name} written to {os.path.abspath(file.name)}'))
print(print_util.color(f'[*] {file_name} written to {os.path.abspath(file_name)}'))
else:
print(print_util.color(response[self.selected]['Output']))

Expand Down
2 changes: 1 addition & 1 deletion empire/server/common/empire.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
from empire.server.database import models
from sqlalchemy import or_, func, and_

VERSION = "4.1.2 BC Security Fork"
VERSION = "4.1.3 BC Security Fork"


class MainMenu(cmd.Cmd):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "empire-bc-security-fork"
version = "4.1.2"
version = "4.1.3"
description = ""
authors = ["BC Security <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit def7d52

Please sign in to comment.