Skip to content

Commit 71f617b

Browse files
committed
v0.4.14
1 parent 18c01d1 commit 71f617b

5 files changed

Lines changed: 21 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
## [v0.4.14] - 2024-03-20
3+
4+
### Changed
5+
6+
- Added `Number` parameter type to build parameters to match C2 Profile Parameters
7+
- Updated package dependencies
8+
29
## [v0.4.13] - 2024-03-05
310

411
### Changed

mythic_container/PayloadBuilder.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ class BuildParameterType(str, Enum):
7575
Boolean = "Boolean"
7676
File = "File"
7777
TypedArray = "TypedArray"
78+
Number = "Number"
7879

7980

8081
class DictionaryChoice:

mythic_container/__init__.py

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

44
containerVersion = "v1.1.8"
55

6-
PyPi_version = "0.4.12"
6+
PyPi_version = "0.4.14"
77

88
RabbitmqConnection = rabbitmqConnectionClass()
99

requirements.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
dynaconf~=3.1.11
2-
setuptools~=65.5.1
3-
ujson~=5.7.0
4-
aiohttp~=3.8.3
5-
psutil~=5.9.4
1+
dynaconf
2+
setuptools
3+
ujson
4+
aiohttp
5+
psutil
6+
aio_pika

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This call to setup() does all the work
1111
setup(
1212
name="mythic_container",
13-
version="0.4.13",
13+
version="0.4.14",
1414
description="Functionality for Mythic Services",
1515
long_description=README,
1616
long_description_content_type="text/markdown",
@@ -26,11 +26,11 @@
2626
packages=["mythic_container", "mythic_container.grpc", "mythic_container.MythicGoRPC"],
2727
include_package_data=True,
2828
install_requires=[
29-
"aio_pika==9.0.4",
30-
"dynaconf==3.1.11",
31-
"ujson==5.7.0",
32-
"aiohttp==3.8.3",
33-
"psutil==5.9.4",
29+
"aio_pika==9.4.1",
30+
"dynaconf==3.2.5",
31+
"ujson==5.9.0",
32+
"aiohttp==3.9.3",
33+
"psutil==5.9.8",
3434
"grpcio",
3535
"grpcio-tools",
3636
],

0 commit comments

Comments
 (0)