A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2024-24811

CVE-2024-24811: Zope SQLAlchemyDA SQLi Vulnerability

CVE-2024-24811 is a SQL injection flaw in Zope SQLAlchemyDA that enables unauthenticated attackers to execute arbitrary SQL statements. This article covers technical details, affected versions, impact, and mitigation.

Published: April 15, 2026

CVE-2024-24811 Overview

SQLAlchemyDA is a generic database adapter for ZSQL methods within the Zope web application framework. A critical SQL injection vulnerability was discovered in versions prior to 2.2 that allows unauthenticated execution of arbitrary SQL statements on the database to which the SQLAlchemyDA instance is connected. This vulnerability stems from missing security declarations on the database adapter class, enabling remote attackers to bypass authentication and directly interact with backend databases.

Critical Impact

Unauthenticated attackers can execute arbitrary SQL statements on connected databases, potentially leading to complete database compromise, data exfiltration, data manipulation, and denial of service.

Affected Products

  • Zope SQLAlchemyDA versions prior to 2.2
  • All installations using Products.SQLAlchemyDA package before the patched version
  • Zope-based applications utilizing SQLAlchemyDA for database connectivity

Discovery Timeline

  • 2024-02-07 - CVE CVE-2024-24811 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2024-24811

Vulnerability Analysis

This SQL injection vulnerability (CWE-89) exists due to missing security declarations on the database adapter class in SQLAlchemyDA. The absence of proper access control mechanisms on critical database methods allows unauthenticated users to execute arbitrary SQL queries. Since the vulnerability requires no authentication and can be exploited over the network without user interaction, attackers can directly interact with the underlying database, potentially extracting sensitive data, modifying records, or executing database-level commands.

Root Cause

The root cause of this vulnerability is the absence of proper security declarations using Zope's AccessControl framework on the database adapter class. Without these declarations, methods that should be restricted to authenticated users with specific permissions (such as change_database_connections) are exposed to unauthenticated access. The security patch introduces the missing AccessControl.Permissions import for change_database_connections to properly restrict access to database manipulation functions.

Attack Vector

The attack vector is network-based, requiring no privileges or user interaction. An attacker can craft malicious SQL queries and submit them through the exposed SQLAlchemyDA interface. Since the vulnerability exists in a database adapter component, successful exploitation could affect any database system connected through SQLAlchemyDA, including PostgreSQL, MySQL, SQLite, and other SQLAlchemy-supported databases.

python
from AccessControl import ClassSecurityInfo
from AccessControl.class_init import InitializeClass
+from AccessControl.Permissions import change_database_connections
from AccessControl.Permissions import view_management_screens
from OFS.PropertyManager import PropertyManager
from OFS.SimpleItem import SimpleItem

Source: GitHub Commit Update

The patch adds the change_database_connections permission import to properly secure database adapter methods.

Detection Methods for CVE-2024-24811

Indicators of Compromise

  • Unusual or unexpected SQL queries appearing in database logs from unauthenticated sessions
  • Database access patterns that bypass normal application authentication flows
  • Error messages indicating SQL injection attempts in web server logs
  • Unexpected data modifications or extractions in database audit logs

Detection Strategies

  • Monitor Zope application logs for unauthorized access attempts to SQLAlchemyDA endpoints
  • Implement database query logging and analyze for suspicious SQL patterns including UNION, DROP, DELETE, or INSERT statements from unexpected sources
  • Deploy Web Application Firewall (WAF) rules to detect common SQL injection payloads
  • Review access control configurations for SQLAlchemyDA instances

Monitoring Recommendations

  • Enable comprehensive database audit logging on all databases connected via SQLAlchemyDA
  • Configure alerting for failed authentication attempts followed by database queries
  • Monitor network traffic for unusual patterns targeting Zope management interfaces
  • Implement anomaly detection for database query patterns

How to Mitigate CVE-2024-24811

Immediate Actions Required

  • Upgrade Products.SQLAlchemyDA to version 2.2 or later immediately
  • Audit database logs for any signs of exploitation prior to patching
  • Review and restrict network access to Zope management interfaces
  • Implement network segmentation to limit database exposure

Patch Information

The vulnerability has been patched in SQLAlchemyDA version 2.2. The fix adds missing security declarations on the database adapter class to properly enforce access control. The security patch is available in commit e682b99f8406f20bc3f0f2c77153ed7345fd215a. Users should upgrade by updating their package dependencies to Products.SQLAlchemyDA>=2.2.

For additional details, refer to the GitHub Security Advisory.

Workarounds

  • There is no workaround for this vulnerability - upgrading to version 2.2 is required
  • As a temporary measure, restrict network access to the Zope application to trusted IP addresses only
  • Consider temporarily disabling SQLAlchemyDA instances until patching can be completed
  • Implement additional network-level access controls to limit exposure
bash
# Upgrade SQLAlchemyDA to patched version
pip install --upgrade Products.SQLAlchemyDA>=2.2

# Verify installed version
pip show Products.SQLAlchemyDA | grep Version

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechZope

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.85%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2026-9813: FlowIntel SSRF Vulnerability

  • CVE-2026-4377: D-Link DWR-X1820 Auth Bypass Vulnerability

  • CVE-2026-47074: ex_aws_sns Auth Bypass Vulnerability

  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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