A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-57798

CVE-2025-57798: Joplin Note-Taking App DoS Vulnerability

CVE-2025-57798 is a denial of service flaw in Joplin note-taking application that allows attackers to trigger out-of-memory errors through excessively long title inputs. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 21, 2026

CVE-2025-57798 Overview

CVE-2025-57798 is a Denial of Service (DoS) vulnerability in Joplin, an open source note-taking and to-do application. The flaw affects versions 3.6.14 and prior. The application fails to validate the length of the title field when creating or editing notes. An attacker can submit an excessively long string, causing the application to allocate unbounded memory and terminate with an Out Of Memory (OOM) error. The issue is tracked under [CWE-770: Allocation of Resources Without Limits or Throttling]. The vulnerability has been patched in version 3.7.1.

Critical Impact

Local attackers with low privileges can crash the Joplin application by submitting an oversized title string through the UI or the local web service API on port 41184.

Affected Products

  • Joplin Desktop versions 3.6.14 and prior
  • Joplin Mobile versions 3.6.14 and prior
  • Joplin local web service API (default port 41184)

Discovery Timeline

  • 2026-05-19 - CVE-2025-57798 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2025-57798

Vulnerability Analysis

The vulnerability resides in Joplin's note model layer, specifically in the userSideValidation function within packages/lib/BaseModel.ts. The function validated identifiers and timestamps but did not enforce any length constraint on the title parameter. When a caller supplies a string of arbitrary size, the application attempts to process and store the entire value in memory. Large inputs trigger an Out Of Memory condition that terminates the Joplin process.

The vulnerability is classified under [CWE-770] for missing resource allocation limits. Exploitation results in loss of availability only — confidentiality and integrity are not affected.

Root Cause

The root cause is missing input length validation in the note model. The pre-patch userSideValidation signature accepted only id, user_updated_time, and user_created_time. Title content bypassed validation entirely and propagated to memory allocation paths without bounds checking.

Attack Vector

There are two exploitation paths. A local user can paste an extremely long string directly into the title field through the user interface when creating or editing a note. Alternatively, an attacker who has compromised the user's authentication token can send a crafted HTTP POST request to the local web service (typically listening on port 41184), including an oversized title parameter. Both paths cause the same OOM condition and process termination.

typescript
// Patch in packages/lib/BaseModel.ts
// Adds title to the validated fields so length can be checked
-	public static userSideValidation(o: { id?: string; user_updated_time?: number; user_created_time?: number }) {
+	public static userSideValidation(o: { id?: string; title?: string; user_updated_time?: number; user_created_time?: number }) {
 		if (o.id && !o.id.match(/^[a-f0-9]{32}$/)) {
 			throw new Error('Validation error: ID must a 32-characters lowercase hexadecimal string');
 		}

Source: Joplin GitHub Commit 5b8795d

Detection Methods for CVE-2025-57798

Indicators of Compromise

  • Repeated Joplin application crashes or unexpected terminations on a user's workstation
  • HTTP POST requests to localhost:41184 containing unusually large title field payloads
  • Spikes in process memory consumption attributed to the Joplin executable prior to termination
  • Unexpected reads of the Joplin authentication token from disk or memory by non-Joplin processes

Detection Strategies

  • Monitor process exit codes and crash reports for the Joplin binary, correlating with preceding memory pressure events
  • Inspect local HTTP traffic to port 41184 for POST requests with abnormally large request bodies
  • Track file access to the Joplin profile directory and authentication token storage by unauthorized processes

Monitoring Recommendations

  • Enable host-based logging for Joplin process lifecycle events and memory usage thresholds
  • Alert on local API requests to 127.0.0.1:41184 originating from processes other than Joplin or expected automation tools
  • Audit access patterns to the Joplin token to detect exfiltration attempts by local malware

How to Mitigate CVE-2025-57798

Immediate Actions Required

  • Upgrade Joplin Desktop and Mobile to version 3.7.1 or later on all affected endpoints
  • Rotate the Joplin Web Clipper authentication token if there is any suspicion of local compromise
  • Restrict access to the local web service port 41184 using host firewall rules

Patch Information

The issue is patched in Joplin version 3.7.1. The fix adds the title field to the userSideValidation function in packages/lib/BaseModel.ts, allowing length validation before memory allocation. Full details are available in GitHub Security Advisory GHSA-6jm8-gr87-q69x and the corresponding commit 5b8795d.

Workarounds

  • Disable the Web Clipper service in Joplin settings if the local API is not required
  • Avoid pasting untrusted content directly into note titles until the patched version is deployed
  • Bind the local web service to loopback only and block external access at the host firewall
bash
# Verify installed Joplin version and confirm patched release
joplin --version
# Expected output: 3.7.1 or later

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechJoplin

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-6jm8-gr87-q69x
  • Related CVEs
  • CVE-2026-34600: Joplin Information Disclosure Vulnerability

  • CVE-2026-22810: Joplin Path Traversal Vulnerability

  • CVE-2025-27409: Joplin Server Path Traversal Vulnerability

  • CVE-2025-24028: Joplin Note-Taking App XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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