Skip to content

Commit

Permalink
Merge pull request #699 from BC-SECURITY/release/5.6.4
Browse files Browse the repository at this point in the history
v5.6.4 into main
  • Loading branch information
vinnybod authored Sep 8, 2023
2 parents 5f6f025 + 826ebbd commit 57a2fea
Show file tree
Hide file tree
Showing 5 changed files with 170 additions and 4 deletions.
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

0 comments on commit 57a2fea

Please sign in to comment.