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-2026-25998

CVE-2026-25998: strongMan VPN Info Disclosure Flaw

CVE-2026-25998 is an information disclosure vulnerability in strongMan, a management interface for strongSwan VPN, that exposes encrypted credentials due to IV reuse. This article covers the technical details, impact, and mitigation.

Published: February 20, 2026

CVE-2026-25998 Overview

CVE-2026-25998 is a cryptographic vulnerability affecting strongMan, the web-based management interface for strongSwan, an open-source IPsec-based VPN solution. The vulnerability stems from improper use of AES in Counter (CTR) mode encryption when storing sensitive credentials in the database, including private keys and EAP secrets. Due to the reuse of initialization vectors (IVs) across all encrypted database fields, attackers with database access can recover encrypted credentials by exploiting key stream reuse.

Critical Impact

Attackers with database access can decrypt sensitive VPN credentials including ECDSA private keys and EAP secrets, potentially compromising the entire VPN infrastructure's security posture.

Affected Products

  • strongMan versions prior to 0.2.0
  • strongSwan VPN deployments using affected strongMan management interfaces
  • Systems storing encrypted credentials in strongMan's database

Discovery Timeline

  • February 19, 2026 - CVE CVE-2026-25998 published to NVD
  • February 19, 2026 - Last updated in NVD database

Technical Details for CVE-2026-25998

Vulnerability Analysis

This vulnerability falls under the category of broken cryptography (CWE-323: Reusing a Nonce, Key Pair in Encryption). When strongMan stores credentials such as private keys and EAP secrets in the database, it encrypts these fields using AES in CTR mode with a global database key. The fundamental cryptographic flaw lies in the absence of unique initialization vectors (IVs) for each encrypted value.

In AES-CTR mode, the security of the encryption depends critically on never reusing the same key and IV combination. When the same IV is used with the same key to encrypt multiple values, an identical key stream is generated for all encrypted data. This allows an attacker to perform XOR operations between ciphertext blocks to recover plaintext information without knowing the encryption key.

The situation is further exacerbated by the fact that certificates, which are considered public information, are encrypted using the same mechanism. An attacker can XOR the known plaintext of a certificate with its ciphertext to directly recover a substantial portion of the key stream. This recovered key stream can then be used to decrypt other secrets stored in the database, particularly shorter values like ECDSA private keys and EAP secrets.

Root Cause

The root cause of this vulnerability is the failure to generate individual, random initialization vectors for each database field encryption operation. strongMan's encryption implementation used a static or predictable IV across all encrypted database entries, violating the fundamental requirement of CTR mode that each encryption operation must use a unique nonce/IV combination.

Attack Vector

The attack requires an adversary to gain read access to the strongMan database. This could occur through:

  • SQL injection vulnerabilities in related applications
  • Database backup file exposure
  • Compromised database credentials
  • Insider threat with database access

Once database access is obtained, the attacker can exploit the IV reuse vulnerability through a known-plaintext attack. The attacker leverages the encrypted certificates (whose plaintext content is publicly known or easily obtained) to recover the key stream. By XORing the ciphertext of a certificate with its known plaintext, the attacker obtains the key stream bytes. These key stream bytes can then be applied to decrypt other encrypted fields that were encrypted with the same (reused) key stream, revealing ECDSA private keys and EAP secrets.

For detailed technical information about this cryptographic attack methodology, see the GitHub Security Advisory.

Detection Methods for CVE-2026-25998

Indicators of Compromise

  • Unauthorized database read operations or queries targeting encrypted credential fields
  • Unexpected access to strongMan database files or backups
  • Evidence of database credential exfiltration in network logs
  • Anomalous VPN authentication attempts using potentially compromised credentials

Detection Strategies

  • Monitor database access logs for unusual SELECT queries targeting credential tables
  • Implement database activity monitoring to detect bulk reads of encrypted fields
  • Deploy file integrity monitoring on database backup locations
  • Review strongMan version across all installations to identify vulnerable deployments

Monitoring Recommendations

  • Enable comprehensive audit logging on the strongMan database
  • Configure alerts for database access from unexpected IP addresses or user accounts
  • Monitor for certificate-based authentication failures that may indicate key compromise
  • Establish baseline patterns for normal database query activity to detect anomalies

How to Mitigate CVE-2026-25998

Immediate Actions Required

  • Upgrade strongMan to version 0.2.0 or later immediately
  • Audit database access logs for any unauthorized access attempts
  • Rotate all VPN credentials (private keys and EAP secrets) stored in strongMan
  • Review and revoke any certificates that may have been compromised

Patch Information

Version 0.2.0 of strongMan addresses this vulnerability by implementing a fundamentally improved encryption scheme. The fix switches from AES-CTR to AES-GCM-SIV encryption, which provides authenticated encryption with additional security guarantees. Each encrypted value now uses:

  • A random nonce generated for each encryption operation
  • An individually derived encryption key using HKDF (HMAC-based Key Derivation Function)

Database migrations are provided to automatically re-encrypt all existing credentials with the new secure encryption mechanism upon upgrade. For more details, refer to the GitHub Security Advisory.

Workarounds

  • Restrict database access to the minimum required personnel and applications
  • Implement network segmentation to limit database server exposure
  • Enable encryption at rest for database storage as an additional layer
  • Consider temporary offline storage of the most sensitive credentials until upgrade is complete
bash
# Verify strongMan version and upgrade
pip show strongMan | grep Version
pip install --upgrade strongMan>=0.2.0

# After upgrade, verify the database migration completed successfully
# Check strongMan logs for migration status

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechStrongswan

  • SeverityHIGH

  • CVSS Score8.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/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-323
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-25075: strongSwan EAP-TTLS DOS Vulnerability

  • CVE-2025-62291: strongSwan Buffer Overflow Vulnerability

  • CVE-2023-41913: strongSwan Buffer Overflow RCE Vulnerability

  • CVE-2021-45079: strongSwan Auth Bypass 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