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-9634

CVE-2024-9634: GiveWP WordPress Plugin RCE Vulnerability

CVE-2024-9634 is a remote code execution flaw in the GiveWP WordPress donation plugin that allows unauthenticated attackers to execute arbitrary code via PHP object injection. This article covers technical details, affected versions, and mitigation strategies.

Updated: May 15, 2026

CVE-2024-9634 Overview

CVE-2024-9634 is a PHP Object Injection vulnerability in the GiveWP – Donation Plugin and Fundraising Platform for WordPress. The flaw affects all versions up to and including 3.16.3. The vulnerable code deserializes untrusted input from the give_company_name parameter during donation processing. Unauthenticated attackers can inject arbitrary PHP objects into the application. A Property-Oriented Programming (POP) chain present in the plugin elevates the injection to remote code execution. The vulnerability is tracked under [CWE-502: Deserialization of Untrusted Data].

Critical Impact

Unauthenticated remote attackers can execute arbitrary code on any WordPress site running a vulnerable GiveWP installation, leading to full site compromise.

Affected Products

  • GiveWP – Donation Plugin and Fundraising Platform for WordPress (all versions ≤ 3.16.3)
  • WordPress sites with GiveWP installed and donation forms exposed
  • Hosting environments serving the vulnerable plugin code path in includes/process-donation.php

Discovery Timeline

  • 2024-10-16 - CVE-2024-9634 published to the National Vulnerability Database
  • 2024-10-16 - GiveWP version 3.16.4 released with the fix in includes/process-donation.php
  • 2025-02-27 - Last updated in NVD database

Technical Details for CVE-2024-9634

Vulnerability Analysis

The GiveWP plugin processes donation submissions through its donation handler. During this process, the give_company_name POST parameter is passed into PHP's unserialize() function without validation. PHP's unserialize() reconstructs objects from serialized strings and invokes magic methods such as __wakeup(), __destruct(), and __toString() on those objects. When an application deserializes attacker-controlled data, any class loaded into the runtime becomes a potential gadget.

GiveWP and its dependencies expose classes that form a usable POP chain. An attacker crafts a serialized payload referencing these classes so that during deserialization, the chained magic methods reach a sink capable of file writes, SQL execution, or command execution. The result is remote code execution under the privileges of the PHP-FPM or web server process.

Root Cause

The root cause is the use of unserialize() on untrusted input received from an unauthenticated HTTP request. The donation flow trusts client-supplied billing fields and reconstructs PHP objects from them. The pre-patch source in DonationRepository.php and related processing logic reflects this unsafe deserialization pattern.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker sends a crafted HTTP POST request to the donation form endpoint with a malicious serialized payload in the give_company_name field. The plugin deserializes the value server-side, triggering the gadget chain and arbitrary code execution. The Wordfence advisory documents the exploitation path.

No public proof-of-concept code is referenced in the enriched data, so this section describes the mechanism in prose. The exploitation primitive is a standard PHP serialized object string (for example, an O: prefixed payload) supplied where the plugin expects a plain text company name.

Detection Methods for CVE-2024-9634

Indicators of Compromise

  • POST requests to donation endpoints containing serialized PHP markers such as O:, a:, or s: in the give_company_name parameter
  • Unexpected PHP files written to wp-content/uploads/ or plugin directories following donation submissions
  • New or modified WordPress administrator accounts with no corresponding audit log entry
  • Outbound network connections from the web server process to attacker-controlled hosts shortly after donation form traffic

Detection Strategies

  • Inspect web server access logs for POST requests to GiveWP form handlers containing URL-encoded serialized payloads in give_company_name
  • Deploy a Web Application Firewall (WAF) rule that blocks request bodies matching PHP serialization patterns in donation fields
  • Run file integrity monitoring on the WordPress installation to flag unauthorized PHP file creation or modification
  • Correlate donation submissions with subsequent process creation events on the underlying host

Monitoring Recommendations

  • Forward WordPress, PHP-FPM, and web server logs to a centralized analytics platform for retention and correlation
  • Alert on PHP serialized object signatures appearing in user-supplied parameters
  • Monitor outbound traffic from web hosts for anomalous destinations or beaconing patterns

How to Mitigate CVE-2024-9634

Immediate Actions Required

  • Update GiveWP to version 3.16.4 or later on every WordPress site in the environment
  • Audit donation forms and recent submissions for evidence of exploitation against give_company_name
  • Rotate WordPress administrator credentials, API keys, and database passwords if compromise is suspected
  • Review installed plugins and themes for unexpected files added since the plugin was first exposed

Patch Information

GiveWP addressed the vulnerability in version 3.16.4. The fix is published in the WordPress plugin repository changeset for process-donation.php. The patch removes the unsafe deserialization of the give_company_name parameter during donation processing.

Workarounds

  • If immediate patching is not possible, disable the GiveWP plugin until the upgrade can be completed
  • Apply WAF rules that reject any request containing PHP serialization tokens in donation form parameters
  • Restrict access to donation endpoints by IP allowlist where the donation flow is non-public
bash
# Update GiveWP via WP-CLI to the patched release
wp plugin update give --version=3.16.4
wp plugin list --name=give --fields=name,status,version

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGivewp

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability22.79%

  • 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-502
  • Technical References
  • WordPress Plugin Source Code

  • Wordfence Vulnerability Report
  • Vendor Resources
  • WordPress Donation Processing Change
  • Related CVEs
  • CVE-2025-0912: GiveWP Donations Widget RCE Vulnerability

  • CVE-2024-12877: GiveWP WordPress Plugin RCE Vulnerability

  • CVE-2024-8353: GiveWP Plugin RCE Vulnerability

  • CVE-2024-5932: GiveWP Donation Plugin RCE 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