The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • 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
      DFIR, Breach Readiness, & Compromise Assessments
    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
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • 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-32265

CVE-2026-32265: Amazon S3 Craft CMS Info Disclosure Flaw

CVE-2026-32265 is an information disclosure vulnerability in the Amazon S3 for Craft CMS plugin that exposes bucket lists to unauthenticated users. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-32265 Overview

CVE-2026-32265 is an information disclosure vulnerability affecting the Amazon S3 for Craft CMS plugin. The vulnerability exists in the BucketsController->actionLoadBucketData() endpoint, which allows unauthenticated users with a valid CSRF token to view a list of S3 buckets that the plugin has access to. This exposure could provide attackers with valuable reconnaissance information about an organization's cloud infrastructure.

Critical Impact

Unauthenticated users can enumerate S3 bucket names accessible to the plugin, potentially revealing sensitive cloud infrastructure details and enabling further targeted attacks.

Affected Products

  • Amazon S3 for Craft CMS plugin versions 2.0.2 through 2.2.4

Discovery Timeline

  • 2026-03-18 - CVE CVE-2026-32265 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2026-32265

Vulnerability Analysis

This vulnerability is classified under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The flaw stems from a missing authentication check in the actionLoadBucketData() method within the BucketsController.php file. While the endpoint requires a valid CSRF token and accepts only POST requests with JSON responses, it fails to verify that the requesting user has administrative privileges before returning bucket data.

The vulnerability allows remote attackers to access the endpoint over the network without requiring any privileges. The exposure is limited to confidentiality impact, as attackers can only read bucket list information without the ability to modify or delete data.

Root Cause

The root cause of this vulnerability is a missing authorization check in the BucketsController class. The actionLoadBucketData() method enforces CSRF protection and request type validation, but does not call $this->requireAdmin() to verify administrative privileges before processing the request and returning sensitive bucket information.

Attack Vector

An attacker can exploit this vulnerability by sending a crafted POST request to the actionLoadBucketData() endpoint with a valid CSRF token. The attack vector is network-based, requiring no authentication or user interaction. The attacker needs only to:

  1. Obtain a valid CSRF token from the Craft CMS application
  2. Send a POST request to the vulnerable endpoint with the Accept: application/json header
  3. Receive the list of S3 buckets configured in the plugin
php
      */
     public function actionLoadBucketData(): Response
     {
+        $this->requireAdmin();
         $this->requirePostRequest();
         $this->requireAcceptsJson();
 

Source: GitHub Commit

Detection Methods for CVE-2026-32265

Indicators of Compromise

  • Unusual POST requests to the /actions/aws-s3/buckets/load-bucket-data endpoint from unauthenticated sessions
  • Multiple failed or successful attempts to access bucket listing endpoints from external IP addresses
  • Web server logs showing requests to the BucketsController endpoint without corresponding admin login activity

Detection Strategies

  • Monitor web application firewall (WAF) logs for suspicious POST requests targeting the aws-s3 plugin endpoints
  • Implement anomaly detection for requests to administrative plugin endpoints from non-authenticated users
  • Review access logs for patterns of reconnaissance activity targeting Craft CMS plugin endpoints

Monitoring Recommendations

  • Configure alerting for any access to the BucketsController endpoints outside of expected administrative workflows
  • Enable detailed logging for all Craft CMS plugin controller actions
  • Implement rate limiting on plugin API endpoints to detect and slow enumeration attempts

How to Mitigate CVE-2026-32265

Immediate Actions Required

  • Update the Amazon S3 for Craft CMS plugin to version 2.2.5 or later immediately
  • Audit web server logs for any historical exploitation attempts against the vulnerable endpoint
  • Review S3 bucket configurations and naming conventions to assess potential exposure from disclosed bucket names

Patch Information

The vulnerability has been addressed in version 2.2.5 of the Amazon S3 for Craft CMS plugin. The fix adds the $this->requireAdmin() authorization check to the actionLoadBucketData() method, ensuring only authenticated administrators can access the bucket listing functionality. The patch is available via the GitHub Commit and through the official plugin update channels. Additional details are available in the GitHub Security Advisory.

Workarounds

  • If immediate patching is not possible, implement WAF rules to block unauthenticated requests to the /actions/aws-s3/buckets/load-bucket-data endpoint
  • Restrict access to Craft CMS administrative paths using network-level controls or IP allowlisting
  • Consider temporarily disabling the Amazon S3 plugin until the update can be applied
bash
# Example WAF rule to block unauthenticated access to vulnerable endpoint
# This is a conceptual example - adapt to your specific WAF platform
# Block POST requests to the aws-s3 buckets endpoint without valid admin session
location ~ ^/actions/aws-s3/buckets/ {
    # Restrict to authenticated admin sessions only
    deny all;
    # Allow from trusted admin IP ranges
    allow 10.0.0.0/8;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechCraft Cms

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/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-200
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33161: Craft CMS Information Disclosure Flaw

  • CVE-2026-33158: Craft CMS Information Disclosure Flaw

  • CVE-2026-27131: Craft CMS Sprig Information Disclosure Flaw

  • CVE-2026-32268: Craft CMS Azure Blob Storage Plugin Flaw
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
  • 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

English