From d1966252a1a92638fd783b893d8fdf012b45245e Mon Sep 17 00:00:00 2001 From: Anthony Rose <20302208+Cx01N@users.noreply.github.com> Date: Sun, 26 Sep 2021 14:21:32 -0700 Subject: [PATCH 1/2] fixed output from files throwing a error for the client (#233) --- empire/client/src/menus/UseStagerMenu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/empire/client/src/menus/UseStagerMenu.py b/empire/client/src/menus/UseStagerMenu.py index b2a07ffc3..7e876ba37 100644 --- a/empire/client/src/menus/UseStagerMenu.py +++ b/empire/client/src/menus/UseStagerMenu.py @@ -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'])) From 643e201f6eaca30b74c5d3d9f47ce8466d6f43fe Mon Sep 17 00:00:00 2001 From: Cx01N Date: Mon, 27 Sep 2021 23:29:57 -0400 Subject: [PATCH 2/2] updated changelog --- VERSION | 2 +- changelog | 5 +++++ empire/server/common/empire.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 4d0dcda01..de197cc33 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.2 +4.1.3 diff --git a/changelog b/changelog index d72b0d01e..f24198cad 100644 --- a/changelog +++ b/changelog @@ -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 diff --git a/empire/server/common/empire.py b/empire/server/common/empire.py index f43feb18c..1c93f00db 100755 --- a/empire/server/common/empire.py +++ b/empire/server/common/empire.py @@ -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): diff --git a/pyproject.toml b/pyproject.toml index 9a0e44d04..9a56a8c10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "empire-bc-security-fork" -version = "4.1.2" +version = "4.1.3" description = "" authors = ["BC Security "] readme = "README.md"