Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-25477

CVE-2026-25477: AFFiNE Open Redirect Vulnerability

CVE-2026-25477 is an open redirect vulnerability in AFFiNE affecting the /redirect-proxy endpoint due to improper domain validation. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 6, 2026

CVE-2026-25477 Overview

CVE-2026-25477 is an Open Redirect vulnerability discovered in AFFiNE, an open-source, all-in-one workspace and operating system application. The vulnerability exists in the /redirect-proxy endpoint where an improperly anchored Regular Expression in the domain validation logic allows attackers to bypass the whitelist by crafting malicious domains that end with a trusted string. This flaw enables attackers to redirect users to malicious websites, potentially facilitating phishing attacks or credential theft.

Critical Impact

Attackers can bypass domain validation to redirect users to malicious sites, enabling phishing campaigns, credential harvesting, and social engineering attacks against AFFiNE users.

Affected Products

  • AFFiNE versions prior to 0.26.0

Discovery Timeline

  • 2026-03-02 - CVE CVE-2026-25477 published to NVD
  • 2026-03-02 - Last updated in NVD database

Technical Details for CVE-2026-25477

Vulnerability Analysis

This vulnerability is classified under CWE-601 (URL Redirection to Untrusted Site, also known as Open Redirect). The core issue stems from a flawed domain validation mechanism within the /redirect-proxy endpoint. The Regular Expression used to validate redirect URLs is improperly anchored, meaning it does not correctly enforce that the entire domain must match a trusted whitelist entry.

Instead of verifying that the domain exactly matches an allowed value, the vulnerable regex only checks if the domain string ends with a trusted pattern. This allows an attacker to craft a malicious domain such as malicious-trusted.com or attacker-affine.pro that passes validation because it terminates with characters matching the expected pattern.

Root Cause

The root cause is an improperly anchored Regular Expression in the domain validation logic. When regex patterns lack proper start (^) and end ($) anchors or use insufficiently specific matching criteria, they can inadvertently match unintended input strings. In this case, the regex was designed to whitelist trusted domains but only validated the suffix of the domain string rather than the complete domain name.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker constructs a malicious URL targeting the /redirect-proxy endpoint with a specially crafted domain parameter. When a victim clicks this link (often delivered via phishing email, social media, or embedded in a webpage), the AFFiNE application validates the domain against its whitelist. Due to the regex flaw, the malicious domain passes validation, and the user is silently redirected to the attacker-controlled site.

The malicious domain leverages the suffix-matching vulnerability by appending a trusted domain string to the end of an attacker-controlled domain. For example, if affine.pro is whitelisted, an attacker could register malicious-affine.pro or use a subdomain pattern that exploits the improper anchoring.

Detection Methods for CVE-2026-25477

Indicators of Compromise

  • Unexpected outbound redirects from the /redirect-proxy endpoint to external domains not on the expected whitelist
  • User reports of being redirected to suspicious or unfamiliar websites after clicking AFFiNE links
  • Web server logs showing requests to /redirect-proxy with domain parameters containing unusual suffixes or hyphenated variations of trusted domains

Detection Strategies

  • Monitor web application logs for requests to the /redirect-proxy endpoint with unusual or suspicious domain parameters
  • Implement URL inspection rules that flag redirect requests where the target domain contains trusted domain names as suffixes rather than exact matches
  • Deploy web application firewall (WAF) rules to detect and block potential open redirect exploitation attempts

Monitoring Recommendations

  • Enable detailed logging for all redirect endpoint activity, capturing full URL parameters and referrer information
  • Set up alerts for high volumes of redirect requests or redirects to newly registered or low-reputation domains
  • Regularly audit application logs for patterns indicative of open redirect abuse, such as domains with hyphenated trusted suffixes

How to Mitigate CVE-2026-25477

Immediate Actions Required

  • Upgrade AFFiNE to version 0.26.0 or later immediately to receive the security patch
  • Review application logs for any historical exploitation attempts targeting the /redirect-proxy endpoint
  • Notify users who may have been affected by potential phishing campaigns leveraging this vulnerability

Patch Information

The vulnerability has been patched in AFFiNE version 0.26.0. Users should update to this version or later to remediate the vulnerability. For detailed information about the fix, refer to the GitHub Security Advisory.

Workarounds

  • If immediate patching is not possible, consider implementing a reverse proxy or WAF rule to strictly validate redirect URLs at the network edge
  • Temporarily disable the /redirect-proxy endpoint if it is not critical to operations until the patch can be applied
  • Implement Content Security Policy (CSP) headers to restrict navigation to known-trusted domains
bash
# Example: Nginx configuration to block suspicious redirect patterns
# Add to your server block as a temporary workaround

location /redirect-proxy {
    # Block requests with potentially malicious domain suffixes
    if ($arg_url ~* "[-.]affine\.pro$") {
        return 403;
    }
    # Allow only exact trusted domains (adjust as needed)
    # Consult AFFiNE documentation for proper configuration
}

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechAffine

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-21853: AFFiNE Workspace 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