Skip to content

Commit 7a22677

Browse files
committed
Merge branch 'hotfix-3433-mimikatz-options'
Fixes #3433 Release Infection Monkey v2.2.1
2 parents 08a0f41 + f2a37e1 commit 7a22677

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ file.
55
The format is based on [Keep a
66
Changelog](https://keepachangelog.com/en/1.0.0/).
77

8+
## [2.1.1 - 2023-06-21]
9+
10+
### Fixed
11+
- A configuration issue that prevents Mimikatz from being used. #3433
12+
13+
14+
815
## [2.2.0 - 2023-05-31]
916
### Added
1017
- `PortScanData.open` property. #3238

build_scripts/appimage/appimage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Changes: python version
44
LINUXDEPLOY_URL="https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage"
5-
PYTHON_VERSION="3.11.3"
5+
PYTHON_VERSION="3.11.4"
66
PYTHON_APPIMAGE_URL="https://github.com/niess/python-appimage/releases/download/python3.11/python${PYTHON_VERSION}-cp311-cp311-manylinux2014_x86_64.AppImage"
77
APPIMAGE_DIR=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
88
APPDIR="$APPIMAGE_DIR/squashfs-root"

docs/content/usage/file-checksums.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ $ sha256sum <FILE_NAME>
3030

3131
| Filename | Type | Version | SHA256 |
3232
|------------------------------------------------------|-------------------|---------|--------------------------------------------------------------------|
33-
| InfectionMonkey-docker-v2.2.0.tgz | Docker | 2.2.0 | `486c92ac892f98f8248b5460008d9d4397cb28e6c2f73f12fcecc109ab2412f7` |
34-
| InfectionMonkey-v2.2.0.AppImage | Linux Package | 2.2.0 | `bc54f74c0745bb0dc453e3916f0eaaf6ded4a023df3180569e1953fd69c9520e` |
35-
| InfectionMonkey-v2.2.0.exe | Windows Installer | 2.2.0 | `06677c33e741e549c6a45716338c56cbdc7209db1338bd8c2cae5cff9d80b69c` |
36-
| monkey-linux-64 | Linux Agent | 2.2.0 | `18ce2217edcc240d11c96bf7ff05bebf4fd4af9fa1b43246badf12b4d4a3a0c2` |
37-
| monkey-windows-64.exe | Windows Agent | 2.2.0 | `c6cb10d1a206d9b08cef4a383a7941cf39e0b7e956d4d272cf8f6e775cfca6ac` |
33+
| monkey-linux-64 | Linux Agent | 2.2.1 | `333a9f5c32780aa32e822f95801a13263015afd3fa11d5e5b1c4fb0af30279fc` |
34+
| monkey-windows-64.exe | Windows Agent | 2.2.1 | `d49b233a31f808af4786b8cedd3772f8b79f28fe726915387542d5c8bed2fafc` |
35+
| InfectionMonkey-docker-v2.2.1.tgz | Docker | 2.2.1 | `21f84970ef69d21d779c43046a475cd8acefaaf16836f801d5c4c4ca987f86e8` |
36+
| InfectionMonkey-v2.2.1.AppImage | Linux Package | 2.2.1 | `cc9af5fe29cd978bbecafe454c9d722921870361fd1351c2447681b4cbe1b4a4` |
37+
| InfectionMonkey-v2.2.1.exe | Windows Installer | 2.2.1 | `74cd99dd087334ab7a87aafc5cc21faca48f32baa5bb38b51223434c548776b3` |
3838

3939

4040
## Older checksums

monkey/agent_plugins/credentials_collectors/mimikatz/config-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"properties": {
3-
"exclude_username_prefixes": {
3+
"excluded_username_prefixes": {
44
"title": "Excluded username prefixes",
55
"description": "Mimikatz will not collect credentials for any user whose username starts with one of these prefixes.",
66
"type": "array",

monkey/common/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
MAJOR = "2"
77
MINOR = "2"
8-
PATCH = "0"
8+
PATCH = "1"
99

1010
build_file_path = Path(__file__).parent.joinpath("BUILD")
1111
with open(build_file_path, "r") as build_file:

0 commit comments

Comments
 (0)