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-2025-7664

CVE-2025-7664: AL Pack Plugin Auth Bypass Vulnerability

CVE-2025-7664 is an authentication bypass flaw in the AL Pack WordPress plugin that allows attackers to activate premium features by spoofing the Origin header. This article covers technical details, affected versions, and mitigation.

Published: April 22, 2026

CVE-2025-7664 Overview

The AL Pack plugin for WordPress contains an authorization bypass vulnerability due to a missing capability check on the check_activate_permission() permission callback for the /wp-json/presslearn/v1/activate REST API endpoint. In all versions up to and including 1.1.1, the callback reads the client-supplied Origin header and allows the request if it matches one of the trusted domains, without ever verifying user authentication, capabilities, or nonce tokens. This makes it possible for unauthenticated attackers to activate premium features by simply spoofing the Origin header.

Critical Impact

Unauthenticated attackers can bypass authorization controls and activate premium plugin features without valid authentication by manipulating HTTP request headers.

Affected Products

  • AL Pack WordPress Plugin versions up to and including 1.1.1
  • WordPress installations with the vulnerable AL Pack plugin installed

Discovery Timeline

  • 2025-08-16 - CVE-2025-7664 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-7664

Vulnerability Analysis

This vulnerability is classified under CWE-862 (Missing Authorization), which represents a fundamental access control flaw where the application fails to properly verify that a user has the necessary permissions before granting access to a protected resource or functionality.

The core issue lies in the flawed implementation of the check_activate_permission() callback function used to protect the REST API endpoint. Rather than implementing proper WordPress capability checks or verifying user authentication status, the function relies solely on validating the HTTP Origin header against a list of trusted domains. This design fundamentally misunderstands the security model—HTTP headers are client-controlled and can be trivially spoofed by any attacker.

The impact allows unauthenticated attackers to activate premium features within the plugin, potentially gaining access to functionality that should be restricted to paying customers or authorized administrators.

Root Cause

The root cause is the improper use of the Origin header as an authorization mechanism. The check_activate_permission() function parses the incoming request's Origin header and compares it against trusted domain values. If a match is found, the request is authorized without any additional verification of user identity, WordPress capabilities, or CSRF protection via nonce tokens.

This represents a critical misunderstanding of HTTP security—the Origin header is designed for CORS (Cross-Origin Resource Sharing) policies and should never be used as a sole authorization mechanism since it can be arbitrarily set by attackers making requests outside of a browser context.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can craft a malicious HTTP request directly to the vulnerable REST API endpoint while spoofing the Origin header to match one of the trusted domains configured in the plugin.

The exploitation flow involves:

  1. Identifying a WordPress installation with the vulnerable AL Pack plugin
  2. Crafting a POST request to /wp-json/presslearn/v1/activate
  3. Setting the Origin header to match a trusted domain (e.g., the plugin vendor's domain)
  4. The server accepts the spoofed Origin and processes the activation request
  5. Premium features become unlocked without valid authorization

Since the attack requires only network access and a spoofed HTTP header, it can be automated at scale against multiple WordPress installations.

Detection Methods for CVE-2025-7664

Indicators of Compromise

  • Unexpected POST requests to /wp-json/presslearn/v1/activate endpoint in web server access logs
  • Premium AL Pack features activated without corresponding license purchases or administrator actions
  • Requests to the activate endpoint originating from suspicious IP addresses or automated tools
  • Origin headers in requests that don't correlate with legitimate browser-based user activity

Detection Strategies

  • Monitor web server logs for requests to the /wp-json/presslearn/v1/activate endpoint, especially from non-browser user agents
  • Implement Web Application Firewall (WAF) rules to detect and alert on requests with spoofed or suspicious Origin headers
  • Configure SentinelOne to monitor for unauthorized changes to WordPress plugin configuration files or database options
  • Review WordPress audit logs for unexpected premium feature activations

Monitoring Recommendations

  • Enable verbose logging for REST API requests on WordPress installations running the AL Pack plugin
  • Set up alerts for activation events that occur outside of normal administrative activity patterns
  • Monitor for bulk requests to the vulnerable endpoint which may indicate automated exploitation attempts
  • Integrate endpoint detection with WordPress security plugins to correlate API abuse with other suspicious activity

How to Mitigate CVE-2025-7664

Immediate Actions Required

  • Update the AL Pack plugin to the latest patched version immediately
  • Review activation logs to identify any unauthorized premium feature activations
  • If unable to update immediately, disable the AL Pack plugin until a patch can be applied
  • Audit WordPress installations for signs of compromise or unauthorized feature access

Patch Information

A security patch addressing this vulnerability is available. The fix can be reviewed in the WordPress Plugin Changeset. Administrators should update to the latest version of the AL Pack plugin available through the WordPress plugin repository. Additional details about the plugin and its developers can be found on the WordPress Plugin Developer Info page.

For detailed vulnerability analysis, refer to the Wordfence Vulnerability Analysis.

Workarounds

  • Temporarily disable the AL Pack plugin if immediate patching is not possible
  • Implement WAF rules to block unauthenticated requests to the /wp-json/presslearn/v1/activate endpoint
  • Restrict access to the WordPress REST API at the web server level using IP whitelisting for administrative functions
  • Consider using a WordPress security plugin to add additional authorization layers to REST API endpoints
bash
# Example Apache configuration to restrict access to the vulnerable endpoint
<Location "/wp-json/presslearn/v1/activate">
    Require ip 192.168.1.0/24
    # Or deny all external access
    # Require all denied
</Location>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.25%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • WordPress Plugin Source Code

  • WordPress Plugin Changeset

  • WordPress Plugin Developer Info

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-6214: Forminator Forms Auth Bypass Vulnerability

  • CVE-2026-4807: WordPress Appointment Booking Auth Bypass

  • CVE-2026-5753: WordPress Migration Plugin Auth Bypass Flaw

  • CVE-2026-32834: WordPress PayPal Plugin Auth Bypass Flaw
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