Skip to content

Commit

Permalink
Merge pull request #576 from BC-SECURITY/release/v4.5.4
Browse files Browse the repository at this point in the history
v4.5.4 into master
  • Loading branch information
Cx01N authored Apr 26, 2022
2 parents 306480c + e3ef3cb commit 542536d
Show file tree
Hide file tree
Showing 4 changed files with 11 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]

## [4.5.4] - 2022-04-26

- Fixed typo from 4.5.3 with the bypass database model (@Vinnybod)

## [4.5.3] - 2022-04-24

- Fixed issue where default_response is needed for external/generate_agent (@Cx01N)
- Added check if bypass language is compatible (@Cx01N)
- Added error message formatting for listeners and stagers (@Cx01N)
Expand Down Expand Up @@ -234,7 +239,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/v4.5.3...HEAD
[Unreleased]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v4.5.4...HEAD

[4.5.4]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v4.5.3...v4.5.4

[4.5.3]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v4.5.2...v4.5.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 @@ -46,7 +46,7 @@
)
from .events import log_event

VERSION = "4.5.3 BC Security Fork"
VERSION = "4.5.4 BC Security Fork"


class MainMenu(cmd.Cmd):
Expand Down
2 changes: 1 addition & 1 deletion empire/server/database/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,6 @@ class Bypass(Base):
id = Column(Integer, Sequence("bypass_seq"), primary_key=True)
name = Column(String(255), unique=True)
code = Column(Text)
language = String(255)
language = Column(String(255))
created_at = Column(UtcDateTime, nullable=False, default=utcnow())
updated_at = Column(UtcDateTime, default=utcnow(), onupdate=utcnow(), nullable=False)
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.5.3"
version = "4.5.4"
description = ""
authors = ["BC Security <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 542536d

Please sign in to comment.