Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v5.6.4 into main #699

Merged
merged 10 commits into from
Sep 8, 2023
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.6.4] - 2023-09-08

- Added Stix2 to dependency list for Advanced Reports (@Cx01N)
- Fixed C# module imports for IronPython agent (@Cx01N)
- Updated Invoke-DllInjection.ps1 (@Signum21)
- Fix nimble install error (@fukusuket)

## [5.6.3] - 2023-08-27

Expand Down Expand Up @@ -579,7 +584,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated shellcoderdi to newest version (@Cx01N)
- Added a Nim launcher (@Hubbl3)

[Unreleased]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.6.3...HEAD
[Unreleased]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.6.4...HEAD

[5.6.4]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.6.3...v5.6.4

[5.6.3]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.6.2...v5.6.3

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 @@ -40,7 +40,7 @@

from . import agents, credentials, listeners, stagers

VERSION = "5.6.3 BC Security Fork"
VERSION = "5.6.4 BC Security Fork"

log = logging.getLogger(__name__)

Expand Down
2 changes: 2 additions & 0 deletions empire/server/data/agent/ironpython_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,10 @@ def process_packet(packetType, data, resultID):
# run csharp module in ironpython using reflection
# todo: make this a job a thread to be trackable
try:
import time
import zlib

import clr
import System.IO
from System import Array, Byte, Char, Console, Object, String, Text
from System.IO import Compression, MemoryStream, StreamWriter
Expand Down
158 changes: 157 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 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 = "5.6.3"
version = "5.6.4"
description = ""
authors = ["BC Security <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -54,6 +54,7 @@ python-obfuscator = "^0.0.2"
pyinstaller = "^5.13.0"
md2pdf = "^1.0.1"
tabulate = "^0.9.0"
stix2 = "^3.0.1"


[tool.poetry.group.dev.dependencies]
Expand Down