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-2024-1380

CVE-2024-1380: Relevanssi WordPress Auth Bypass Flaw

CVE-2024-1380 is an authentication bypass flaw in the Relevanssi WordPress plugin that allows unauthenticated attackers to export query log data. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2024-1380 Overview

The Relevanssi – A Better Search plugin for WordPress contains an authorization bypass vulnerability due to a missing capability check on the relevanssi_export_log_check() function. This flaw affects all versions up to and including 4.22.0, allowing unauthenticated attackers to export sensitive query log data without proper authorization.

Critical Impact

Unauthenticated attackers can exploit this missing authorization check to export search query logs, potentially exposing sensitive user search patterns, behavioral data, and information about site content that users are searching for.

Affected Products

  • Relevanssi – A Better Search plugin for WordPress versions up to and including 4.22.0
  • WordPress installations using vulnerable Relevanssi plugin versions
  • Sites with Relevanssi query logging enabled

Discovery Timeline

  • 2024-03-13 - CVE-2024-1380 published to NVD
  • 2025-01-31 - Last updated in NVD database

Technical Details for CVE-2024-1380

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization), a broken access control flaw that occurs when a web application does not perform authorization checks for a function that requires specific privileges. In this case, the relevanssi_export_log_check() function fails to verify whether the requesting user has appropriate capabilities before allowing access to export functionality.

The vulnerability allows network-based attacks with low complexity and requires no privileges or user interaction. The impact is limited to confidentiality exposure, as attackers can only read data but cannot modify or delete information. WordPress plugins that handle logging functionality are particularly sensitive targets because query logs often contain insights into user behavior, internal content structures, and potentially sensitive search terms.

Root Cause

The root cause of this vulnerability lies in the absence of WordPress capability checks within the relevanssi_export_log_check() function. WordPress provides a robust authorization framework through functions like current_user_can() that developers should use to verify user permissions before executing privileged operations. The vulnerable function processes export requests without first validating that the requester possesses administrative or appropriate user-level capabilities to access log data.

Attack Vector

The attack vector is network-based, allowing remote exploitation without authentication. An attacker can directly access the export functionality endpoint to retrieve search query logs. Since no authentication or authorization is required, any remote attacker who can reach the WordPress site can potentially exploit this vulnerability to extract logged search data.

The exploitation process involves making requests to the plugin's export functionality endpoint. Without proper capability verification, the function processes the request and returns query log data that should only be accessible to site administrators.

Detection Methods for CVE-2024-1380

Indicators of Compromise

  • Unusual access attempts to Relevanssi plugin export endpoints from unauthenticated sessions
  • Unexpected spikes in requests targeting WordPress AJAX handlers related to log exports
  • Access logs showing repeated calls to relevanssi_export_log_check functionality from external IPs
  • Large data transfers from the WordPress installation that correlate with log export operations

Detection Strategies

  • Monitor WordPress access logs for requests to Relevanssi export endpoints from unauthenticated users
  • Implement Web Application Firewall (WAF) rules to detect and block suspicious export requests
  • Review server logs for patterns indicating automated scanning or exploitation attempts against plugin endpoints
  • Configure alerting for any successful log export operations that don't originate from authenticated admin sessions

Monitoring Recommendations

  • Enable detailed logging on WordPress installations to capture all plugin-related requests
  • Implement real-time monitoring for access to sensitive plugin functions and endpoints
  • Set up alerts for bulk data exports or unusual access patterns to logging functionality
  • Regularly audit access logs for evidence of unauthorized data access attempts

How to Mitigate CVE-2024-1380

Immediate Actions Required

  • Update the Relevanssi plugin to the latest available version that addresses this vulnerability
  • Review WordPress access logs for any signs of prior exploitation
  • Consider temporarily disabling query logging in Relevanssi until the plugin is updated
  • Implement WAF rules to restrict access to plugin export functionality

Patch Information

The vendor has addressed this vulnerability. Security updates are available through the official WordPress plugin repository. The patch changeset can be reviewed at the WordPress Plugin Changeset. Additional vulnerability details are available in the Wordfence Vulnerability Report.

Site administrators should update the plugin immediately through the WordPress dashboard or by downloading the latest version from the WordPress plugin repository.

Workarounds

  • Restrict access to WordPress admin-ajax.php at the server level using IP whitelisting for administrative functions
  • Implement additional authentication layers through security plugins that can enforce capability checks
  • Disable Relevanssi query logging feature temporarily if immediate patching is not possible
  • Use a WAF to block unauthenticated requests to export-related endpoints
bash
# Apache configuration example to restrict access to admin-ajax.php
<Files admin-ajax.php>
    Order deny,allow
    Deny from all
    # Allow from trusted admin IP addresses
    Allow from 192.168.1.100
    # Allow WordPress core AJAX functionality
    <If "%{REQUEST_METHOD} == 'POST' && %{HTTP:X-Requested-With} == 'XMLHttpRequest'">
        Allow from all
    </If>
</Files>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechRelevanssi

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability86.95%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • Wordfence Vulnerability Report
  • Vendor Resources
  • WordPress Plugin Changeset
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal Vulnerability
Default Legacy - Prefooter | 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