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
    • 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-66022

CVE-2025-66022: OWASP Faction RCE Vulnerability

CVE-2025-66022 is a remote code execution flaw in OWASP Faction that allows unauthenticated attackers to upload malicious extensions and execute arbitrary commands. This article covers technical details, affected versions, and mitigation.

Published: March 11, 2026

CVE-2025-66022 Overview

CVE-2025-66022 is a critical authentication bypass vulnerability in FACTION, an OWASP PenTesting Report Generation and Collaboration Framework. The vulnerability exists in the extension framework's lifecycle hook execution path, which permits untrusted extension code to execute arbitrary system commands on the server. Combined with a missing authentication check on the /portal/AppStoreDashboard endpoint, an unauthenticated attacker can upload malicious extensions and achieve remote code execution (RCE) on the host running FACTION.

Critical Impact

Unauthenticated attackers can upload malicious extensions and execute arbitrary system commands on servers running FACTION versions prior to 1.7.1, resulting in complete system compromise.

Affected Products

  • OWASP FACTION versions prior to 1.7.1
  • FACTION PenTesting Report Generation Framework (all installations with App Store functionality)
  • Self-hosted FACTION deployments with exposed web interfaces

Discovery Timeline

  • 2025-11-26 - CVE-2025-66022 published to NVD
  • 2026-01-02 - Last updated in NVD database

Technical Details for CVE-2025-66022

Vulnerability Analysis

This vulnerability combines two critical security flaws: an authentication bypass (CWE-287) and missing authorization (CWE-862). The core issue lies in the authorization logic within the AppStoreController.java and InstallExtensionController.java files. The original code used a flawed boolean logic condition that allowed access when the App Store was disabled, regardless of the user's admin status.

When the App Store feature is disabled (isAppStoreEnabled() returns false), the original condition if(this.isAppStoreEnabled() && !this.isAcadmin()) evaluates to false, which incorrectly permits access to the extension management interface. This means any unauthenticated user could access the App Store dashboard and upload arbitrary extensions when the App Store was disabled—a condition many administrators might consider "safe."

Once a malicious extension is uploaded, FACTION's extension framework executes the extension code during lifecycle hook invocation. This execution occurs with server-level privileges, allowing attackers to run arbitrary system commands and achieve full remote code execution on the FACTION host.

Root Cause

The root cause is a logical error in the authorization check within FACTION's extension management controllers. The original condition used && (AND) logic when it should have used || (OR) logic. This meant that both conditions had to be true for access to be denied, rather than denying access if either condition failed. When the App Store was disabled, the first part of the condition (isAppStoreEnabled()) returned false, causing the entire authorization check to short-circuit and incorrectly allow access.

Attack Vector

The attack vector is network-based and requires no authentication, privileges, or user interaction. An attacker can:

  1. Access the /portal/AppStoreDashboard endpoint directly (especially when App Store is disabled)
  2. Upload a malicious extension containing arbitrary code
  3. Trigger the extension's lifecycle hook to execute system commands
  4. Achieve remote code execution with server-level privileges

The patched code corrects the logic to properly deny access:

java
@Before(priority=1)
public String authorization() {
    // Original flawed logic (vulnerable):
    // if(this.isAppStoreEnabled() && !this.isAcadmin()) {
    
    // Fixed logic - deny access if AppStore is disabled OR user is not admin:
    if(!this.isAppStoreEnabled() || !this.isAcadmin()) {
        AuditLog.notAuthorized( this,
            "Invalid Access to App Store", true);
        return LOGIN;

Source: GitHub Commit c6389f1c76175b7c1c68d1a87b389311b16c62c3

Detection Methods for CVE-2025-66022

Indicators of Compromise

  • Unauthorized access attempts to /portal/AppStoreDashboard or extension management endpoints
  • Unexpected extension installations or modifications in the FACTION extensions directory
  • Unusual process spawning from the FACTION server process
  • Web server logs showing unauthenticated requests to App Store-related endpoints

Detection Strategies

  • Monitor HTTP access logs for requests to /portal/AppStoreDashboard from unauthenticated sessions
  • Implement file integrity monitoring on FACTION extension directories to detect unauthorized uploads
  • Deploy network intrusion detection rules for suspicious POST requests to extension upload endpoints
  • Review FACTION audit logs for "Invalid Access to App Store" entries which may indicate exploitation attempts

Monitoring Recommendations

  • Enable detailed logging for all authentication and authorization events in FACTION
  • Set up alerts for new extension installations, especially from unrecognized sources
  • Monitor server process activity for unusual command execution patterns originating from the FACTION application
  • Implement web application firewall (WAF) rules to restrict access to administrative endpoints

How to Mitigate CVE-2025-66022

Immediate Actions Required

  • Upgrade FACTION to version 1.7.1 or later immediately
  • Restrict network access to FACTION instances using firewall rules until patched
  • Review installed extensions for any unauthorized or suspicious entries
  • Audit server logs for signs of prior exploitation attempts

Patch Information

OWASP has released FACTION version 1.7.1 which addresses this vulnerability by correcting the authorization logic in both AppStoreController.java and InstallExtensionController.java. The fix changes the boolean logic from && to ||, ensuring that access is denied when either the App Store is disabled OR the user lacks administrator privileges. The security patch is available via the GitHub Security Advisory GHSA-xr72-2g43-586w and the specific commit can be reviewed at GitHub Commit c6389f1c76175b7c1c68d1a87b389311b16c62c3.

Workarounds

  • Implement network-level access controls to restrict access to the FACTION web interface to trusted IP addresses only
  • Place FACTION behind a reverse proxy with additional authentication requirements
  • Disable or block access to the /portal/AppStoreDashboard endpoint at the web server or WAF level
  • Monitor and audit all extension-related activity until the patch can be applied
bash
# Example: Block access to vulnerable endpoint using nginx
location /portal/AppStoreDashboard {
    deny all;
    return 403;
}

# Example: Restrict FACTION access to internal networks using iptables
iptables -A INPUT -p tcp --dport 8080 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -j DROP

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOwasp Faction

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.81%

  • 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-287

  • CWE-862
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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