Skip to content

Commit b44be71

Browse files
Kyle-Nealeclaude
andauthored
Bump requests>=2.33.0 and cryptography>=46.0.6 to fix CVE-2026-25645 and CVE-2026-34073 (DataDog#23223)
* Bump requests>=2.33.0 and cryptography>=46.0.6 across integrations (CVE fixes) Addresses CVE-2026-25645 (VULN-59770) via requests>=2.33.0 and CVE-2026-34073 (VULN-59768) via cryptography>=46.0.6. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Add changelog entries for CVE dependency bumps (PR DataDog#23223) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix dependency pins: use == instead of >= for requests and cryptography Validator requires exact == pins. Update agent_requirements.in, all affected pyproject.toml files, and add missing ddev changelog entry. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent afa5b2e commit b44be71

15 files changed

Lines changed: 17 additions & 10 deletions

File tree

agent_requirements.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cachetools==7.0.5
1010
clickhouse-connect==0.14.1
1111
cm-client==45.0.4
1212
confluent-kafka==2.13.2
13-
cryptography==46.0.5
13+
cryptography==46.0.6
1414
ddtrace==3.19.5
1515
dnspython==2.8.0
1616
fastavro==1.12.1
@@ -56,7 +56,7 @@ requests-ntlm==1.3.0
5656
requests-oauthlib==2.0.0
5757
requests-toolbelt==1.0.0
5858
requests-unixsocket2==1.0.1
59-
requests==2.32.5
59+
requests==2.33.0
6060
rethinkdb==2.4.10.post1
6161
securesystemslib[crypto,pynacl]==0.28.0
6262
semver==3.0.4

cisco_aci/changelog.d/23223.fixed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump `cryptography` to `>=46.0.6` (CVE-2026-34073 / VULN-59768).

cisco_aci/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ license = "BSD-3-Clause"
3636

3737
[project.optional-dependencies]
3838
deps = [
39-
"cryptography==46.0.5",
39+
"cryptography==46.0.6",
4040
]
4141

4242
[project.urls]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump `requests` to `>=2.33.0` (CVE-2026-25645 / VULN-59770) and `cryptography` to `>=46.0.6` (CVE-2026-34073 / VULN-59768).

datadog_checks_base/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ db = [
3636
deps = [
3737
"binary==1.0.2",
3838
"cachetools==7.0.5",
39-
"cryptography==46.0.5",
39+
"cryptography==46.0.6",
4040
"ddtrace==3.19.5",
4141
"jellyfish==1.2.1",
4242
"lazy-loader==0.5",
@@ -48,7 +48,7 @@ deps = [
4848
"pyyaml==6.0.3",
4949
"requests-toolbelt==1.0.0",
5050
"requests-unixsocket2==1.0.1",
51-
"requests==2.32.5",
51+
"requests==2.33.0",
5252
"simplejson==3.20.2",
5353
"urllib3==2.6.3",
5454
"wrapt==2.1.2",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump `requests` to `>=2.33.0` (CVE-2026-25645 / VULN-59770).

datadog_checks_dev/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939
"pytest-memray>=1.4.0; platform_system=='Linux' or platform_system=='Darwin'",
4040
"pytest-mock",
4141
"pyyaml>=5.4.1",
42-
"requests>=2.22.0",
42+
"requests>=2.33.0",
4343
"tenacity",
4444
]
4545
dynamic = [

ddev/changelog.d/23223.fixed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump `requests` to `==2.33.0` (CVE-2026-25645 / VULN-59770).

ddev/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies = [
4141
"tomli-w",
4242
"tomlkit",
4343
"tqdm",
44-
"requests",
44+
"requests==2.33.0",
4545
"matplotlib",
4646
"squarify",
4747
"datadog",

http_check/changelog.d/23223.fixed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump `cryptography` to `>=46.0.6` (CVE-2026-34073 / VULN-59768).

0 commit comments

Comments
 (0)