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

CVE-2024-25675: MISP Auth Bypass Vulnerability

CVE-2024-25675 is an authentication bypass flaw in MISP allowing unauthorized export generation without proper POST requests. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 15, 2026

CVE-2024-25675 Overview

An HTTP method bypass vulnerability was discovered in MISP (Malware Information Sharing Platform) before version 2.4.184. The vulnerability exists in the export generation process where clients are not required to use POST requests, allowing potential abuse of the export functionality. This issue affects app/Controller/JobsController.php and app/View/Events/export.ctp.

Critical Impact

Attackers can bypass intended access controls by exploiting the missing HTTP method enforcement, potentially triggering export generation processes without proper request validation, leading to unauthorized data access or resource exhaustion.

Affected Products

  • MISP versions prior to 2.4.184
  • MISP app/Controller/JobsController.php component
  • MISP app/View/Events/export.ctp component

Discovery Timeline

  • 2024-02-09 - CVE-2024-25675 published to NVD
  • 2025-06-16 - Last updated in NVD database

Technical Details for CVE-2024-25675

Vulnerability Analysis

This vulnerability falls under CWE-749 (Exposed Dangerous Method or Function), where the MISP application fails to properly enforce HTTP method restrictions on security-sensitive endpoints. The export generation functionality in JobsController.php did not validate that incoming requests used the POST method, allowing attackers to potentially trigger export operations via GET requests.

In web application security, enforcing proper HTTP methods is critical because GET requests can be cached, logged in server access logs, stored in browser history, and are more susceptible to Cross-Site Request Forgery (CSRF) attacks. By accepting GET requests for state-changing operations like export generation, the application exposes itself to various attack vectors including CSRF, unintended cache poisoning, and information disclosure through referrer headers.

Root Cause

The root cause lies in the missing HTTP method validation in the JobsController.php file. The cache function responsible for initiating export generation did not include a check to ensure the request method was POST before processing. This oversight allowed any HTTP method to trigger the export generation process, violating the principle of using POST for state-changing operations.

Attack Vector

The vulnerability is exploitable over the network without authentication (based on the CVSS vector), allowing remote attackers to craft malicious requests that bypass the intended POST-only restriction. An attacker could embed links in emails, forums, or malicious websites that, when clicked by an authenticated MISP user, would trigger export generation processes. This could lead to unauthorized access to exported data, denial of service through resource exhaustion, or information disclosure.

php
// Security patch in app/Controller/JobsController.php
// Source: https://github.com/MISP/MISP/commit/0ac2468c2896f4be4ef9219cfe02bff164411594

         if (Configure::read('MISP.disable_cached_exports')) {
             throw new MethodNotAllowedException('This feature is currently disabled');
         }
+        if (!$this->request->is('post')) {
+            throw new MethodNotAllowedException('This endpoint only accept POST.');
+        }
         if ($this->_isSiteAdmin()) {
             $target = 'All events.';
         } else {

Detection Methods for CVE-2024-25675

Indicators of Compromise

  • Unusual GET requests to /jobs/cache/ or export-related endpoints in web server access logs
  • High volume of export generation requests from single IP addresses or user sessions
  • Unexpected export files being generated or accessed without corresponding POST request logs
  • CSRF-like attack patterns where export endpoints are triggered via referrer from external domains

Detection Strategies

  • Implement web application firewall (WAF) rules to alert on GET requests to the /jobs/cache/ endpoint
  • Monitor server access logs for export endpoint access patterns that deviate from normal POST-based workflows
  • Deploy intrusion detection signatures that identify attempts to access export functionality via non-POST methods
  • Enable audit logging for all export generation events and correlate with HTTP method used

Monitoring Recommendations

  • Review MISP access logs for anomalous export generation patterns, particularly those not using POST method
  • Set up alerts for high-frequency access to export endpoints that could indicate exploitation attempts
  • Monitor for unusual data exfiltration patterns following export generation events
  • Implement real-time monitoring of the JobsController.php cache function invocations

How to Mitigate CVE-2024-25675

Immediate Actions Required

  • Upgrade MISP to version 2.4.184 or later immediately
  • Review recent access logs for potential exploitation of the export endpoints via GET requests
  • Implement network-level controls to restrict access to MISP instances from untrusted networks
  • Enable CSRF protection mechanisms on all MISP endpoints if not already configured

Patch Information

The MISP development team has released a fix in version 2.4.184. The patch adds explicit POST method validation to the cache function in JobsController.php and updates the view template in export.ctp to use proper POST-based form links. The specific commit addressing this vulnerability can be found in the MISP GitHub repository commit 0ac2468. Organizations should review the version comparison between v2.4.183 and v2.4.184 for a complete list of changes.

Workarounds

  • If immediate patching is not possible, consider disabling the cached exports feature by setting MISP.disable_cached_exports to true in configuration
  • Implement reverse proxy or WAF rules to block non-POST requests to /jobs/cache/ endpoints
  • Restrict network access to MISP to trusted IP ranges only
  • Enable additional authentication requirements for export functionality at the network perimeter
bash
# Configuration example to disable cached exports temporarily
# In MISP configuration (app/Config/config.php)
# Set the following configuration option:
# 'MISP.disable_cached_exports' => true

# WAF rule example (ModSecurity format) to block GET requests to cache endpoint
SecRule REQUEST_URI "@contains /jobs/cache" \
    "id:1001,phase:1,deny,status:403,log,msg:'Blocked non-POST request to MISP cache endpoint',\
    chain"
SecRule REQUEST_METHOD "!@streq POST"

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMisp

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.14%

  • 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
  • NVD-CWE-noinfo

  • CWE-749
  • Technical References
  • GitHub MISP Version Comparison
  • Vendor Resources
  • GitHub MISP Commit
  • Related CVEs
  • CVE-2026-39962: MISP Auth Bypass Vulnerability

  • CVE-2026-44381: MISP Platform SQL Injection Vulnerability

  • CVE-2026-44380: MISP Privilege Escalation Vulnerability

  • CVE-2026-44379: MISP UUID Validation 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