From 005f58bfe26ddae094c7191838063b85a41a0f4e Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 25 Feb 2023 21:43:33 +0000 Subject: [PATCH 1/2] Prepare release 5.0.4 private --- CHANGELOG.md | 7 ++++++- pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1db465ce..5fcf4ef30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [5.0.4] - 2023-02-25 + - Fix module error in PSRansom (@Cx01N) - Update the install script to set up a new db user instead of overwriting the root user (@Vinnybod) - Update the Starkiller syncer to skip updating if not in a git repo (@Vinnybod) @@ -412,7 +415,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.0.3...HEAD +[Unreleased]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.0.4...HEAD + +[5.0.4]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.0.3...v5.0.4 [5.0.3]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.0.2...v5.0.3 diff --git a/pyproject.toml b/pyproject.toml index d05fedc89..6421d782d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "empire-bc-security-fork" -version = "5.0.3" +version = "5.0.4" description = "" authors = ["BC Security "] readme = "README.md" From 090bfc4751bde803f08a7dcd6814b1af267b164f Mon Sep 17 00:00:00 2001 From: Vince Rose Date: Sat, 25 Feb 2023 15:14:50 -0700 Subject: [PATCH 2/2] root password required for mysql image --- .github/docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/docker-compose.yml b/.github/docker-compose.yml index 92a542ea0..a8ce5df4d 100644 --- a/.github/docker-compose.yml +++ b/.github/docker-compose.yml @@ -20,6 +20,7 @@ services: image: mysql:8.0 restart: always environment: + MYSQL_ROOT_PASSWORD: 'root' MYSQL_USER: 'empire_user' MYSQL_PASSWORD: 'empire_password' MYSQL_DATABASE: test_empire