-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change ReservationID from UUID to str
UUIDs are 128 bits long and, in string format, consist of 36 characters. This is a much larger set of possible values than is required for our purposes. Furthermore, we can increase entropy by increasing the character set used in generating ReservationIDs. This will allow us to have a large enough set of possible values using much less characters, allowing agent binary download URLs to be significantly shortened. Issue guardicore/monkey#4187
- Loading branch information
1 parent
ed1f1fd
commit 6c1489c
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ paths = ["agentpluginapi", "vulture_allowlist.py"] | |
|
||
[tool.poetry] | ||
name = "monkey-agentpluginapi" | ||
version = "v0.7.0" | ||
version = "v0.8.0" | ||
description = "Interfaces and components that comprise the Infection Monkey Agent Plugin API" | ||
authors = [ | ||
"Ilija Lazoroski <[email protected]>", | ||
|