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-2026-7635

CVE-2026-7635: coreActivity WordPress Plugin DoS Vulnerability

CVE-2026-7635 is a PHP Object Injection flaw in coreActivity WordPress plugin that enables denial of service attacks blocking admin access. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 17, 2026

CVE-2026-7635 Overview

CVE-2026-7635 is a PHP Object Injection vulnerability affecting the coreActivity: Activity Logging plugin for WordPress in all versions up to and including 3.0. The plugin stores attacker-controlled User-Agent HTTP header data in the logmeta table without stripping PHP serialization syntax. When an administrator opens the Logs page, the plugin calls maybe_unserialize() on every retrieved meta_value and forwards the result to DeviceDetector::setUserAgent(). Unauthenticated attackers can inject a crafted serialized payload that triggers a Fatal TypeError, producing a persistent denial-of-service condition that blocks administrator access to the Logs page. The vulnerability is tracked as [CWE-502] Deserialization of Untrusted Data.

Critical Impact

Unauthenticated attackers can permanently disable administrator access to the WordPress Logs page by sending a single crafted User-Agent header during any logged event.

Affected Products

  • coreActivity: Activity Logging for WordPress plugin — all versions up to and including 3.0
  • WordPress installations using the dev4press coreactivity plugin
  • Sites where administrators rely on the plugin's Logs page for activity auditing

Discovery Timeline

  • 2026-05-13 - CVE-2026-7635 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-7635

Vulnerability Analysis

The coreActivity plugin logs events such as failed login attempts and stores associated metadata, including the client User-Agent header, in the logmeta database table. The plugin does not validate or strip PHP serialization syntax from this header before storage. When an administrator views the Logs page, the query_metas() function retrieves each meta_value and applies WordPress's maybe_unserialize() helper without first verifying that the value was originally serialized by the application.

Because maybe_unserialize() will attempt to deserialize any string that looks like serialized PHP data, an attacker-supplied payload is converted into a PHP object. The deserialized object is then passed to DeviceDetector::setUserAgent(), which expects a string argument. The type mismatch raises a Fatal TypeError, halting page rendering. The malicious row remains in the database, so every subsequent visit to the Logs page repeats the failure, producing a persistent denial-of-service state.

Root Cause

The root cause is unsafe deserialization of attacker-controlled input [CWE-502]. The plugin treats stored log metadata as trusted and uses maybe_unserialize() as a generic decoder, but the original User-Agent string was never serialized by the application. Combined with the absence of input sanitization on inbound HTTP headers, the design allows untrusted client data to enter PHP's deserialization path.

Attack Vector

An unauthenticated remote attacker sends an HTTP request to the target WordPress site with a User-Agent header containing a PHP serialized payload. The request must trigger any event that coreActivity logs, such as a failed login attempt. The plugin writes the raw header into logmeta. When any administrator next opens the Logs page, the malicious row is read, deserialized, and passed to DeviceDetector::setUserAgent(), causing a Fatal TypeError and breaking the page. See the WordPress Core Log Code, WordPress Device Log Code, and WordPress Logs Table Code for the affected code paths.

Detection Methods for CVE-2026-7635

Indicators of Compromise

  • HTTP request logs containing User-Agent headers that begin with PHP serialization prefixes such as O:, a:, or s: followed by length and type identifiers.
  • Rows in the wp_logmeta table where meta_value for user_agent keys contains serialized PHP object syntax instead of a normal browser User-Agent string.
  • PHP error log entries showing Fatal error: Uncaught TypeError originating from DeviceDetector::setUserAgent() when an administrator loads the coreActivity Logs page.
  • Repeated failed login attempts immediately preceding malformed log metadata insertion.

Detection Strategies

  • Inspect wp_logmeta for meta_value entries matching the regex ^[OaSsbidN]:[0-9]+: which indicates serialized PHP data in a field expected to hold a plain string.
  • Monitor web server access logs for inbound User-Agent headers containing characters such as {, }, ;, or the literal sequence O: at the start of the value.
  • Alert on PHP TypeError exceptions raised from wp-content/plugins/coreactivity/ paths in application error logs.

Monitoring Recommendations

  • Forward WordPress PHP error logs and web access logs to a centralized analytics platform and create correlation rules tying malformed User-Agent strings to subsequent administrator-side errors.
  • Track availability of the coreActivity Logs admin page with synthetic checks so a persistent DoS condition is detected before relying on user reports.
  • Review failed-login telemetry for patterns that combine authentication failures with anomalous header content from the same source IP.

How to Mitigate CVE-2026-7635

Immediate Actions Required

  • Disable or remove the coreActivity: Activity Logging plugin until a patched release is installed.
  • Audit and purge any wp_logmeta rows where meta_value contains PHP serialization syntax for the user_agent field, restoring administrator access to the Logs page.
  • Restrict access to the WordPress admin interface by IP allow-listing while triage is in progress.
  • Apply web application firewall rules that reject inbound User-Agent headers containing PHP serialization markers.

Patch Information

The vendor has published code changes addressing the unsafe deserialization path. See the GitHub Pull Request Changes for the upstream fix and the Wordfence Vulnerability Intelligence entry for advisory details. Administrators should upgrade to a release later than 3.0 once the fixed version is available from the WordPress plugin repository.

Workarounds

  • Block or sanitize HTTP User-Agent headers containing PHP serialization patterns at the reverse proxy or WAF layer before requests reach PHP.
  • Patch the plugin locally by removing or replacing the call to maybe_unserialize() in query_metas() so stored values are returned as raw strings.
  • Truncate or normalize User-Agent values before insertion into logmeta to strip non-printable and structural characters used by PHP serialization.
bash
# Example WAF rule to drop requests with serialized payloads in User-Agent
# ModSecurity syntax
SecRule REQUEST_HEADERS:User-Agent "@rx ^[OaSsbidN]:[0-9]+:" \
    "id:1026763501,phase:1,deny,status:400,\
    msg:'Blocked PHP serialized payload in User-Agent (CVE-2026-7635)'"

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • GitHub Pull Request Changes

  • WordPress Core Log Code

  • WordPress Device Log Code

  • WordPress Logs Table Code

  • WordPress DBLite Code

  • WordPress Admin Table Code

  • WordPress Core Log Code

  • WordPress Device Log Code

  • WordPress Logs Table Code

  • WordPress DBLite Code

  • WordPress Admin Table Code

  • Wordfence Vulnerability Intelligence
  • Related CVEs
  • CVE-2021-47959: WPGraphQL Plugin DoS Vulnerability

  • CVE-2026-40308: My Calendar WordPress Plugin DoS Vulnerability

  • CVE-2026-8689: WordPress Visualizer Auth Bypass Vulnerability

  • CVE-2026-7526: PDF Embedder Information Disclosure Flaw
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