A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      Digital Forensics, IRR & Breach Readiness
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-1777

CVE-2026-1777: Amazon SageMaker Python SDK RCE Flaw

CVE-2026-1777 is a remote code execution vulnerability in Amazon SageMaker Python SDK where HMAC signing keys are exposed in cleartext, allowing attackers to upload malicious artifacts. This post covers technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2026-1777 Overview

A sensitive data exposure vulnerability exists in the Amazon SageMaker Python SDK before versions v3.2.0 and v2.256.0. The vulnerability occurs because the ModelBuilder HMAC signing key is included in the cleartext response elements of the DescribeTrainingJob function. An attacker with permissions to both call this API and modify objects in the Training Jobs S3 output location may have the ability to upload arbitrary artifacts which are executed the next time the Training Job is invoked.

Critical Impact

Attackers with specific AWS permissions can leverage exposed HMAC signing keys to upload malicious artifacts that execute during subsequent Training Job invocations, potentially compromising ML pipelines and training infrastructure.

Affected Products

  • Amazon SageMaker Python SDK versions prior to v3.2.0
  • Amazon SageMaker Python SDK versions prior to v2.256.0
  • Systems utilizing ModelBuilder with DescribeTrainingJob API calls

Discovery Timeline

  • 2026-02-02 - CVE CVE-2026-1777 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2026-1777

Vulnerability Analysis

This vulnerability is classified under CWE-319 (Cleartext Transmission of Sensitive Information). The core issue lies in the improper handling of cryptographic secrets within the SageMaker Python SDK's ModelBuilder component. When the DescribeTrainingJob API function is called, the response inadvertently includes the HMAC signing key in cleartext, exposing critical authentication material to any entity with API access permissions.

The exposure of HMAC signing keys creates a significant security concern because these keys are fundamental to ensuring the integrity and authenticity of artifacts within the training pipeline. An attacker who obtains the signing key can forge valid signatures for malicious payloads, effectively bypassing the integrity verification mechanisms designed to protect the training workflow.

Root Cause

The root cause is insufficient protection of sensitive cryptographic material in API responses. The DescribeTrainingJob function returns the ModelBuilder HMAC signing key as part of its response payload without proper redaction or encryption. This represents a design flaw where sensitive secrets are included in diagnostic or informational API responses that should only contain metadata about training jobs.

Attack Vector

Exploitation of this vulnerability requires a multi-step attack chain. First, an attacker must have AWS IAM permissions to call the DescribeTrainingJob API. Second, they need write access to the S3 bucket designated as the Training Job's output location. With these permissions in place, the attacker can:

  1. Call the DescribeTrainingJob API to extract the cleartext HMAC signing key
  2. Use the extracted key to sign malicious artifacts with valid signatures
  3. Upload these signed malicious artifacts to the S3 output location
  4. Wait for the Training Job to be invoked, at which point the malicious artifacts execute

This attack vector is network-based and does not require user interaction. The requirement for elevated AWS permissions (specifically IAM access to the DescribeTrainingJob API and S3 write permissions) limits the attack surface to insider threats or scenarios where AWS credentials have already been compromised.

Detection Methods for CVE-2026-1777

Indicators of Compromise

  • Unexpected or unauthorized calls to the DescribeTrainingJob API, particularly from unusual source IPs or principals
  • Anomalous modifications to artifacts in Training Job S3 output buckets that don't correlate with legitimate training activities
  • Training Job executions exhibiting unexpected behavior, network connections, or resource utilization patterns
  • CloudTrail logs showing correlation between DescribeTrainingJob calls and subsequent S3 PUT operations to training output locations

Detection Strategies

  • Enable and monitor AWS CloudTrail logging for all sagemaker:DescribeTrainingJob API calls
  • Implement S3 bucket access logging and monitor for write operations from unexpected IAM principals
  • Deploy SentinelOne Singularity Cloud Security to detect suspicious API activity patterns and anomalous resource access
  • Configure alerts for any modification to Training Job S3 output buckets outside of active training windows

Monitoring Recommendations

  • Establish baseline patterns for DescribeTrainingJob API usage and alert on deviations
  • Monitor SageMaker Training Job execution logs for signs of malicious artifact execution
  • Implement continuous integrity verification for artifacts in Training Job S3 buckets
  • Use AWS GuardDuty in conjunction with SentinelOne for comprehensive cloud threat detection

How to Mitigate CVE-2026-1777

Immediate Actions Required

  • Upgrade Amazon SageMaker Python SDK to version v3.2.0 or later (or v2.256.0 or later for the 2.x branch)
  • Audit AWS IAM policies to restrict DescribeTrainingJob API access to only essential principals
  • Review CloudTrail logs for any unauthorized access to DescribeTrainingJob API prior to patching
  • Verify integrity of existing artifacts in Training Job S3 output locations

Patch Information

AWS has released patched versions of the SageMaker Python SDK that address this vulnerability. The fix is available in versions v3.2.0 and v2.256.0. Organizations should update their SDK dependencies immediately. For detailed information, refer to the AWS Security Bulletin 2026-004 and the GitHub Security Advisory GHSA-rjrp-m2jw-pv9c.

Workarounds

  • Implement strict IAM policies using least-privilege principles to limit access to the DescribeTrainingJob API
  • Enable S3 bucket versioning and Object Lock on Training Job output buckets to prevent unauthorized modifications
  • Use AWS VPC endpoints to restrict SageMaker API access to trusted network boundaries
  • Deploy additional integrity verification mechanisms independent of the SDK's built-in signing
bash
# Upgrade SageMaker Python SDK to patched version
pip install --upgrade sagemaker>=3.2.0

# Or for 2.x branch compatibility
pip install --upgrade "sagemaker>=2.256.0,<3.0.0"

# Verify installed version
pip show sagemaker | grep Version

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechAmazon Sagemaker

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:N/VA:N/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-319
  • Technical References
  • AWS Security Bulletin 2026-004

  • GitHub Release v2.256.0

  • GitHub Release v3.2.0

  • GitHub Security Advisory GHSA-rjrp-m2jw-pv9c
  • Related CVEs
  • CVE-2026-1778: SageMaker Python SDK TLS Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • English
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use