File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Added Digicert source plugin. Enable it with DIGICERT_SOURCE_ENABLED
1212Added AWS ACM source plugin. This plugin retreives all certificates for an account and a region.
1313Added AWS ACM destination plugin. This plugin uploads a certificate to AWS ACM.
1414Allow updating options field via authority update API.
15+ Fixed a DoS security issue affecting Windows env via the name parameter of the certificate post endpoint.
1516
1617
17181.6.0 - `2023-10-23 `
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ def text_to_slug(value, joiner="-"):
1515 Normalize a string to a "slug" value, stripping character accents and removing non-alphanum characters.
1616 A series of non-alphanumeric characters is replaced with the joiner character.
1717 """
18+ if len (value ) > 10_000 :
19+ raise ValueError ("Input value is too long." )
1820
1921 # Strip all character accents: decompose Unicode characters and then drop combining chars.
2022 value = "" .join (
You can’t perform that action at this time.
0 commit comments