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
    • 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-33722

CVE-2024-33722: SOPlanning SQL Injection Vulnerability

CVE-2024-33722 is a SQL injection flaw in SOPlanning 1.52.00 that allows authenticated users to execute malicious SQL queries via projets.php. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2024-33722 Overview

CVE-2024-33722 is a SQL Injection vulnerability [CWE-89] affecting SOPlanning version 1.52.00, an open-source online project planning tool. The flaw resides in the projets.php endpoint, where the statut[] parameter is not properly sanitized before being used in a database query. An authenticated attacker can inject crafted SQL payloads to manipulate backend queries.

Successful exploitation allows attackers to read, modify, or potentially delete records in the SOPlanning database. The vulnerability requires valid authenticated access, which limits exposure to users with existing application credentials.

Critical Impact

Authenticated SQL injection in projets.php via the statut[] parameter enables unauthorized access to project planning data and potential database manipulation.

Affected Products

  • SOPlanning 1.52.00
  • SOPlanning instances exposing the projets.php endpoint to authenticated users
  • Web deployments running the affected SOPlanning release without input sanitization patches

Discovery Timeline

  • 2026-05-08 - CVE-2024-33722 published to NVD
  • 2026-05-08 - Last updated in NVD database

Technical Details for CVE-2024-33722

Vulnerability Analysis

The vulnerability exists in SOPlanning 1.52.00 within the projets.php script, which handles project listing and filtering. The application accepts a statut[] array parameter representing project status filters. SOPlanning incorporates this user-supplied input into a SQL query without proper parameterization or sanitization.

Because statut[] is processed as an array, attackers can inject SQL fragments into individual array elements. The injected SQL executes within the context of the SOPlanning database user, exposing project data, user records, and other application tables.

The issue is classified under [CWE-89] Improper Neutralization of Special Elements used in an SQL Command. Exploitation requires only low-privileged authenticated access, lowering the barrier for malicious insiders or attackers who obtain user credentials through phishing or credential stuffing.

Root Cause

The root cause is unsafe construction of SQL statements using concatenated user input. SOPlanning fails to apply prepared statements or parameter binding when processing the statut[] filter. Array elements are inserted directly into the query string, breaking out of the intended IN() or WHERE clause context.

Attack Vector

The attack vector is network-based through the web interface. An attacker authenticates to SOPlanning, then submits a crafted POST or GET request to projets.php containing a malicious statut[] payload. The server executes the injected SQL against the underlying database, returning data or modifying records based on the payload structure. Public exploitation details are available in the GitHub Exploit Repository.

Detection Methods for CVE-2024-33722

Indicators of Compromise

  • HTTP requests to projets.php containing SQL metacharacters such as ', --, UNION, or SLEEP( within the statut[] parameter
  • Database error messages logged from SOPlanning referencing syntax errors near user-supplied values
  • Unexpected long-running queries originating from the SOPlanning application database account

Detection Strategies

  • Inspect web server access logs for requests to projets.php with abnormal statut[] values containing SQL keywords or encoded payloads
  • Deploy a Web Application Firewall (WAF) rule set tuned to detect SQL injection patterns against PHP applications
  • Correlate authentication events with subsequent anomalous database query volume from the same session

Monitoring Recommendations

  • Enable PHP and MySQL query logging on SOPlanning hosts to capture parameter values submitted to projets.php
  • Alert on repeated 500-series HTTP responses from projets.php that may indicate injection probing
  • Monitor authenticated user sessions for atypical access patterns to project filter endpoints

How to Mitigate CVE-2024-33722

Immediate Actions Required

  • Restrict access to the SOPlanning application to trusted networks until a patched version is deployed
  • Audit existing SOPlanning user accounts and disable inactive or unnecessary credentials to reduce the authenticated attack surface
  • Review database and web server logs for prior exploitation attempts targeting projets.php

Patch Information

No official vendor patch URL is listed in the available CVE references. Administrators should monitor the SOPlanning project repository for releases newer than 1.52.00 that address the statut[] SQL injection. Until a fixed release is available, apply compensating controls through input filtering or WAF rules. Exploit proof-of-concept code is published in the GitHub Exploit Repository and should be referenced when validating mitigations.

Workarounds

  • Configure a WAF or reverse proxy to block requests where statut[] parameters contain SQL metacharacters such as quotes, semicolons, or comment markers
  • Enforce strict allowlisting of expected statut[] values at the application or proxy layer
  • Limit the database privileges of the SOPlanning application account to minimize the impact of successful injection
bash
# Example WAF rule (ModSecurity) blocking SQLi patterns in statut[] parameter
SecRule ARGS_NAMES "@rx ^statut\[\]$" \
    "chain,phase:2,deny,status:403,id:1003372,\
    msg:'Potential SQLi in SOPlanning projets.php statut[] parameter'"
    SecRule ARGS "@rx (?i)(union\s+select|sleep\s*\(|--|';)" "t:none,t:urlDecodeUni"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechSoplanning

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Exploit Repository
  • Related CVEs
  • CVE-2024-33724: SOPlanning XSS Vulnerability

  • CVE-2025-62294: Soplanning Auth Bypass Vulnerability

  • CVE-2024-27115: Soplanning RCE Vulnerability Explained
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