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

CVE-2025-49091: KDE Konsole RCE Vulnerability

CVE-2025-49091 is a remote code execution vulnerability in KDE Konsole that exploits URL scheme handlers to execute arbitrary code. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-49091 Overview

CVE-2025-49091 is a Remote Code Execution (RCE) vulnerability affecting KDE Konsole versions prior to 25.04.2. The vulnerability exists in Konsole's URL scheme handler implementation, which processes ssh://, telnet://, and rlogin:// URLs. When the corresponding binary for these protocols is unavailable on the system, Konsole improperly falls back to executing /bin/bash with attacker-controlled arguments, enabling arbitrary code execution.

Critical Impact

An attacker can achieve remote code execution by crafting malicious URLs that exploit Konsole's fallback mechanism when protocol-specific binaries are missing from the target system.

Affected Products

  • KDE Konsole versions prior to 25.04.2
  • Linux distributions shipping vulnerable Konsole versions
  • Debian-based systems (security advisory issued via debian-lts-announce)

Discovery Timeline

  • June 9, 2025 - KDE Security Advisory 20250609-1 published
  • June 11, 2025 - CVE-2025-49091 published to NVD
  • June 18, 2025 - Last updated in NVD database

Technical Details for CVE-2025-49091

Vulnerability Analysis

This vulnerability stems from improper control flow management (CWE-670) in Konsole's URL scheme handling logic. Konsole is designed to support external protocol handlers for ssh://, telnet://, and rlogin:// URLs, launching the appropriate binary when a user clicks or opens such a URL. The critical flaw occurs in the fallback code path: when the expected binary (such as ssh, telnet, or rlogin) is not available on the system, Konsole incorrectly falls back to invoking /bin/bash and passes the URL-derived arguments directly to it.

This design allows an attacker to craft a malicious URL that, when processed by a vulnerable Konsole instance on a system lacking the specific protocol binary, results in arbitrary shell command execution. The attack requires user interaction (opening a malicious URL) and network access to deliver the malicious link.

Root Cause

The root cause is a flawed fallback mechanism in the scheme handler implementation. Instead of safely handling the error case when a required binary is unavailable, Konsole's code path incorrectly delegates execution to /bin/bash with user-supplied arguments from the URL. This violates the principle of least privilege and safe error handling, as URL parameters should never be directly passed to a shell interpreter.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker can deliver a specially crafted URL (e.g., via email, webpage, or messaging application) to a victim. When the victim opens the URL on a system running a vulnerable Konsole version where the protocol binary is missing, the malicious arguments in the URL are executed via /bin/bash. The attack exploits the Changed scope characteristic, meaning a successful exploit could impact resources beyond the vulnerable component itself.

The vulnerability mechanism works as follows: Konsole receives a URL with a scheme like ssh://, telnet://, or rlogin://. The application attempts to locate the corresponding binary. If the binary is not found, Konsole falls back to /bin/bash and passes the URL-derived arguments, allowing shell command injection. For detailed technical analysis, see the Proofnet Konsole RCE Analysis and the KDE Security Advisory.

Detection Methods for CVE-2025-49091

Indicators of Compromise

  • Unexpected /bin/bash process executions originating from Konsole parent processes
  • Process command lines containing ssh://, telnet://, or rlogin:// scheme patterns with suspicious arguments
  • Network connections initiated following Konsole URL handling events
  • Anomalous child processes spawned by Konsole with shell metacharacters in arguments

Detection Strategies

  • Monitor for Konsole spawning /bin/bash processes with URL-like arguments containing scheme prefixes
  • Implement endpoint detection rules for suspicious process trees where Konsole is the parent of unexpected shell processes
  • Audit system logs for URL handler invocations that result in shell execution without corresponding protocol binary execution
  • Deploy behavioral analysis to detect command injection patterns in terminal emulator URL handling

Monitoring Recommendations

  • Enable process creation auditing on Linux systems to capture Konsole process trees
  • Configure SIEM rules to alert on bash executions with ssh://, telnet://, or rlogin:// patterns in arguments
  • Monitor for unusual network activity following Konsole URL processing events
  • Review application logs for URL scheme handler errors or fallback conditions

How to Mitigate CVE-2025-49091

Immediate Actions Required

  • Update KDE Konsole to version 25.04.2 or later immediately
  • Review systems for exploitation indicators, particularly unexpected shell executions from Konsole
  • Consider temporarily disabling URL scheme handler functionality if patching is not immediately possible
  • Ensure ssh, telnet, and rlogin binaries are either properly installed or URL handling for these schemes is disabled

Patch Information

KDE has released a security patch addressing this vulnerability in Konsole version 25.04.2. The fix is documented in KDE Commit 09d20dea109050b4c02fb73095f327b5642a2b75. Users should update via their distribution's package manager or by downloading the latest release from the KDE Konsole release tags. Debian-based users should refer to the Debian LTS Announcement for distribution-specific update instructions.

Workarounds

  • Install the required protocol binaries (ssh, telnet, rlogin) to prevent the vulnerable fallback code path from triggering
  • Configure desktop environment to use alternative URL handlers for ssh://, telnet://, and rlogin:// schemes
  • Block or filter incoming URLs with these scheme prefixes at the network or email gateway level
  • Temporarily switch to an alternative terminal emulator until patching is complete
bash
# Configuration example
# Check current Konsole version
konsole --version

# Update Konsole on Debian/Ubuntu-based systems
sudo apt update && sudo apt upgrade konsole

# Update Konsole on Fedora/RHEL-based systems
sudo dnf update konsole

# Update Konsole on Arch-based systems
sudo pacman -Syu konsole

# Verify the protocol binaries are installed (prevents fallback path)
which ssh telnet rlogin

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechKde Konsole

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.16%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityLow
  • CWE References
  • CWE-670
  • Technical References
  • KDE Commit Update

  • KDE Konsole Tags

  • KDE Security Advisory 20250609-1

  • KDE Konsole Changelog

  • Proofnet Konsole RCE Analysis

  • Openwall OSS Security Post

  • Debian LTS Announcement
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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