CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-1778

The Global Unverify: How One Line of Python Broke SageMaker TLS

Amit Schendel
Amit Schendel
Senior Security Researcher

Feb 3, 2026·5 min read·23 visits

Executive Summary (TL;DR)

The Amazon SageMaker Python SDK (< 3.1.1, < 2.256.0) globally disabled SSL certificate verification to suppress errors when downloading models. This allows attackers to intercept HTTPS traffic, inject malicious models, and achieve Remote Code Execution (RCE) via insecure deserialization.

Developers hate SSL errors. They hate them so much that sometimes, rather than fixing the certificate chain, they simply turn off validation for the entire process. This is exactly what happened in the Amazon SageMaker Python SDK. A 'quick fix' to suppress errors from the `ssl` library resulted in a global disablement of certificate verification, leaving machine learning pipelines wide open to Man-in-the-Middle (MitM) attacks and malicious model injection.

The Hook: The Convenience Trap

We have all been there. You are writing a script, trying to download a resource, and Python throws a tantrum: SSL: CERTIFICATE_VERIFY_FAILED. It is annoying. It halts development. And the top answer on StackOverflow usually involves a magical incantation that makes the error go away.

But there is a massive difference between pasting a hack into a throwaway script and embedding it into a production-grade SDK used by thousands of enterprises to manage their AI infrastructure. In CVE-2026-1778, the Amazon SageMaker Python SDK fell into the 'Convenience Trap'.

To support the Triton Inference Server, the SDK needs to download model weights (like ResNet or BERT) from repositories like torchvision. Apparently, these downloads were failing validation in certain environments. Rather than debugging the root trust store issue, the code opted for the nuclear option: telling the Python interpreter to stop caring about certificates entirely.

The Flaw: Monkeypatching Hell

The vulnerability lies in how Python handles SSL contexts. The ssl module provides a default context used by urllib, http.client, and by extension, higher-level libraries like requests and boto3 (if they rely on the standard library's context). Ideally, this context is secure by default.

The flaw in SageMaker was a classic case of "Monkeypatching." Monkeypatching is the dynamic modification of a class or module at runtime. It is a powerful feature of dynamic languages like Python, but it is also a loaded gun pointed at your foot.

The SDK included this snippet:

ssl._create_default_https_context = ssl._create_unverified_context

This single line overwrites the global default HTTPS context factory with one that performs no verification. Crucially, this doesn't just affect the code downloading the model. Once this line executes, any subsequent HTTPS connection made by that Python process—whether it's talking to AWS S3, a third-party API, or an internal microservice—will blindly trust whatever certificate it is presented with.

It is the digital equivalent of unlocking your front door to let a delivery driver in, and then welding the lock open for the rest of eternity.

The Smoking Gun: Confession in Comments

Nothing tells a story quite like a developer's comment explaining exactly why they introduced a security vulnerability. The diff for the fix reveals the thought process behind the bug. It wasn't malice; it was just an attempt to make the error messages stop.

Here is the code removed in commit 5e7a3efa7bec0a161194ffa0cef346dda93bf2c6:

# Otherwise it will complain SSL: CERTIFICATE_VERIFY_FAILED
# When trying to download models from torchvision
- ssl._create_default_https_context = ssl._create_unverified_context

The comment "Otherwise it will complain" is the smoking gun. It admits that the security controls were working as intended (blocking untrusted connections) and that the "fix" was to silence the complaint rather than solve the trust issue.

> [!NOTE] > The fix was simple: Delete the lines. By removing the override, the SDK reverts to using the system's default, secure SSL context, which validates certificates against the OS trust store.

The Exploit: From MitM to RCE

Why is an SSL bypass so dangerous in an ML context? Because of Pickles. Machine learning models (PyTorch .pth files, Scikit-learn models) are frequently serialized using Python's pickle module. pickle is notoriously insecure; unpickling a malicious file executes arbitrary code.

Here is the attack chain:

  1. Positioning: An attacker positions themselves in the network path (e.g., a compromised router, a malicious Wi-Fi hotspot, or ARP spoofing in a shared environment).
  2. Interception: The victim runs a SageMaker job that imports a Triton model. The SDK initializes and globally disables SSL verification.
  3. The Bait: The SDK attempts to download a pre-trained model (e.g., https://download.pytorch.org/models/resnet50.pth).
  4. The Switch: The attacker intercepts the request. Since verification is disabled, they present a self-signed certificate. The SDK accepts it without error.
  5. The Payload: Instead of the real ResNet50 model, the attacker serves a malicious file containing a pickled reverse shell.
  6. Execution: The SDK receives the file and loads it using torch.load() (which uses pickle). The payload triggers, and the attacker gains a shell inside the SageMaker container.

Once inside, the attacker can steal AWS credentials (often stored in environment variables like AWS_ACCESS_KEY_ID), pivot to other AWS services, or poison the training data.

The Fix: Trust, Don't Bypass

The remediation is straightforward: update your SDK. AWS released versions 3.1.1 and 2.256.0 to address this.

However, the lesson here extends beyond just upgrading a package. If you are a developer facing CERTIFICATE_VERIFY_FAILED errors, do not disable verification. Instead:

  1. Update Root CAs: Ensure your container or OS has the latest ca-certificates package.
  2. Use Custom Contexts: If you absolutely must connect to a server with a self-signed cert (e.g., internal testing), pass the verify=False flag only to that specific request session, or create a specific SSL context with the custom CA loaded.
  3. Install the CA: Add your internal CA certificate to the system trust store so the default validation works naturally.

Global monkeypatching of security primitives is a "code smell" that should trigger immediate alarms in any code review.

Official Patches

AWSAWS Security Bulletin 2026-004-AWS

Fix Analysis (1)

Technical Appendix

CVSS Score
5.9/ 10
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N

Affected Systems

Amazon SageMaker Python SDK v3.x < 3.1.1Amazon SageMaker Python SDK v2.x < 2.256.0Triton Inference Server integrations via SageMaker

Affected Versions Detail

Product
Affected Versions
Fixed Version
SageMaker Python SDK
AWS
< 3.1.13.1.1
SageMaker Python SDK
AWS
< 2.256.02.256.0
AttributeDetail
CWE IDCWE-295
Attack VectorNetwork (MitM)
CVSS v3.15.9 (Medium)
ImpactIntegrity Loss / Remote Code Execution
Root CauseGlobal SSL Context Monkeypatching
KEV StatusNot Listed

MITRE ATT&CK Mapping

T1557Adversary-in-the-Middle
Credential Access
T1204User Execution (Malicious File)
Execution
T1059Command and Scripting Interpreter
Execution
CWE-295
Improper Certificate Validation

The software does not validate, or incorrectly validates, a certificate. This allows an attacker to spoof a trusted entity by using a man-in-the-middle (MITM) attack.

Known Exploits & Detection

HypotheticalStandard MitM attack injecting a malicious Pickle file during model download.

Vulnerability Timeline

Version 3.1.1 Released (Fix)
2025-12-10
Version 2.256.0 Released (Fix)
2026-01-08
CVE-2026-1778 Published
2026-02-02

References & Sources

  • [1]Fix Commit on GitHub
  • [2]Python SSL Context Documentation

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•2 minutes ago•GHSA-M557-WRGG-6RP4
5.8

GHSA-m557-wrgg-6rp4: Server-Side Request Forgery via Authority Information Access (AIA) Chasing in phpseclib

The PHP Secure Communications Library (phpseclib) contains a Server-Side Request Forgery (SSRF) vulnerability due to an insecure default implementation of Authority Information Access (AIA) certificate chasing. This flaw allows remote, unauthenticated attackers to coerce applications validating user-supplied X.509 certificates into generating arbitrary outbound HTTP requests to internal networks or local interfaces.

Amit Schendel
Amit Schendel
0 views•6 min read
•32 minutes ago•CVE-2026-45491
6.2

CVE-2026-45491: Directory Traversal via Improper Link Resolution in .NET System.Formats.Tar

A directory traversal vulnerability exists in the Microsoft .NET System.Formats.Tar library during archive extraction. When extracting a TAR archive using the TarFile.ExtractToDirectory API, the extraction engine improperly resolves symbolic links prior to file creation, allowing local unauthorized attackers to write or overwrite arbitrary files outside the target directory. This can lead to local tampering, privilege escalation, or arbitrary code execution.

Amit Schendel
Amit Schendel
2 views•6 min read
•about 1 hour ago•GHSA-GJ48-438W-JH9V
6.1

GHSA-GJ48-438W-JH9V: Client-Side HTML Sanitization Bypass in Bleach

A client-side HTML sanitization bypass vulnerability exists in the Bleach library where the formaction attribute is not recognized as a URI. This allows attackers to inject javascript: URIs when formaction is on the allowed list, resulting in Cross-Site Scripting (XSS).

Alon Barad
Alon Barad
4 views•6 min read
•about 1 hour ago•CVE-2026-53722
5.4

CVE-2026-53722: Reflected DOM-based Cross-Site Scripting (XSS) in Nuxt <NuxtLink>

A reflected DOM-based Cross-Site Scripting (XSS) vulnerability was identified in Nuxt's core <NuxtLink> component. Prior to the patched versions, the component failed to validate or sanitize the target URI schemes before directly rendering them into the 'href' attribute of native HTML anchor elements. An attacker who controls the input bound to the 'to' or 'href' properties can inject executable URI schemes, such as 'javascript:' or 'data:', leading to arbitrary script execution in the context of the user's browser session.

Amit Schendel
Amit Schendel
3 views•6 min read
•about 15 hours ago•GHSA-PW6J-QG29-8W7F
5.9

GHSA-pw6j-qg29-8w7f: State Persistence and Sensitive Credential Leakage in Tornado CurlAsyncHTTPClient

A state persistence vulnerability exists in Tornado's CurlAsyncHTTPClient component where pooled pycurl.Curl handles are reused across asynchronous requests without a complete state reset. Consequently, sensitive per-request configurations, such as client TLS certificates or proxy basic authentication credentials, persist on the shared handle. This behavior leads to subsequent requests leaking these credentials to unauthorized remote servers.

Amit Schendel
Amit Schendel
7 views•7 min read
•about 15 hours ago•CVE-2026-48748
7.5

CVE-2026-48748: Netty HTTP/3 QPACK Blocked Streams Memory Exhaustion

CVE-2026-48748 is a denial-of-service vulnerability in Netty's HTTP/3 codec (netty-codec-http3) occurring when QPACK dynamic tables are enabled but the blocked streams limit is not explicitly configured. A bug in limit checking and a memory leak in stream tracking allow unauthenticated remote attackers to exhaust the JVM heap memory and crash the server.

Amit Schendel
Amit Schendel
8 views•6 min read