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-30955

CVE-2026-30955: Forceu Gokapi DOS Vulnerability

CVE-2026-30955 is a denial of service vulnerability in Forceu Gokapi that allows authenticated users to cause OOM kills and complete service disruption. This post covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-30955 Overview

CVE-2026-30955 is a Resource Exhaustion vulnerability affecting Gokapi, a self-hosted file sharing server with automatic expiration and encryption support. Prior to version 2.2.4, an API endpoint accepts unbounded request bodies without any size limit. An authenticated user can exploit this flaw to cause an Out-of-Memory (OOM) kill condition, resulting in complete service disruption for all users.

Critical Impact

Authenticated attackers can trigger complete service denial by exhausting server memory through unbounded API requests, affecting all users of the Gokapi instance.

Affected Products

  • Forceu Gokapi versions prior to 2.2.4

Discovery Timeline

  • 2026-03-13 - CVE CVE-2026-30955 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2026-30955

Vulnerability Analysis

This vulnerability falls under CWE-400 (Uncontrolled Resource Consumption). The core issue lies in an API endpoint that fails to implement proper request body size validation. When processing incoming requests, the server does not enforce any upper limit on the size of the request payload, allowing attackers to submit arbitrarily large request bodies.

The attack can be initiated over the network without user interaction. Authentication is required, but only at a low privilege level. The vulnerability exclusively impacts availability, with no confidentiality or integrity concerns. A successful exploit results in the server process consuming excessive memory until the operating system's OOM killer terminates the process, causing complete service disruption.

Root Cause

The root cause is the absence of request body size validation on an API endpoint. When handling HTTP requests, the server reads the entire request body into memory without checking or limiting its size. This lack of input validation creates a condition where memory consumption is controlled by the attacker rather than the application.

In typical secure implementations, web applications should define maximum allowed request body sizes and reject requests exceeding those limits early in the request processing pipeline. Gokapi versions prior to 2.2.4 lacked this protection mechanism.

Attack Vector

The attack is network-based and requires only low-privilege authentication. An attacker with valid credentials to a Gokapi instance can craft malicious HTTP requests with extremely large request bodies targeting the vulnerable API endpoint.

The exploitation flow involves:

  1. Authenticating to the Gokapi instance with valid user credentials
  2. Sending one or more HTTP requests with excessively large payloads to the vulnerable endpoint
  3. The server attempts to read and process the entire request body into memory
  4. Memory consumption grows until the system's OOM killer terminates the Gokapi process
  5. All users lose access to the file sharing service until the service is restarted

The vulnerability is straightforward to exploit and requires no special tools beyond the ability to craft HTTP requests with large payloads.

Detection Methods for CVE-2026-30955

Indicators of Compromise

  • Unusual memory consumption spikes on the server hosting Gokapi
  • OOM killer events in system logs referencing the Gokapi process
  • Large inbound HTTP requests in web server or reverse proxy access logs
  • Service crashes or unexpected restarts of the Gokapi application
  • User reports of intermittent or complete service unavailability

Detection Strategies

  • Monitor system logs for OOM killer events targeting the Gokapi process
  • Implement request body size logging at the reverse proxy or load balancer level to identify anomalously large requests
  • Configure memory usage alerting for the Gokapi application process
  • Review authentication logs for suspicious patterns of authenticated requests preceding service disruptions

Monitoring Recommendations

  • Set up real-time memory usage monitoring with threshold-based alerts for the Gokapi service
  • Configure log aggregation to correlate large request events with memory consumption anomalies
  • Implement network traffic analysis to detect unusually large HTTP POST or PUT requests
  • Enable process monitoring to track unexpected Gokapi service restarts

How to Mitigate CVE-2026-30955

Immediate Actions Required

  • Upgrade Gokapi to version 2.2.4 or later immediately
  • Review authentication logs for any suspicious activity that may indicate prior exploitation attempts
  • Implement request body size limits at the reverse proxy level as an additional layer of defense
  • Consider temporarily restricting API access if immediate patching is not possible

Patch Information

The vulnerability has been addressed in Gokapi version 2.2.4. The fix implements proper request body size validation to prevent unbounded memory consumption. Users should upgrade to this version or later to remediate the vulnerability.

For detailed patch information, refer to the Gokapi v2.2.4 Release and the GitHub Security Advisory GHSA-qwc6-vc2v-2ggj.

Workarounds

  • Configure request body size limits at the reverse proxy or load balancer level (e.g., client_max_body_size in Nginx)
  • Implement rate limiting for authenticated API requests to slow down potential exploitation attempts
  • Deploy memory limits using containerization or cgroups to prevent system-wide impact from OOM conditions
  • Monitor and alert on unusual memory consumption patterns to enable rapid incident response
bash
# Example Nginx configuration to limit request body size
# Add this to your Nginx server block for Gokapi
location / {
    client_max_body_size 100M;
    proxy_pass http://localhost:53842;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechForceu Gokapi

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • Gokapi v2.2.4 Release
  • Vendor Resources
  • GitHub Security Advisory GHSA-qwc6-vc2v-2ggj
  • Related CVEs
  • CVE-2026-30943: Forceu Gokapi Auth Bypass Vulnerability

  • CVE-2026-30961: Forceu Gokapi Auth Bypass Vulnerability

  • CVE-2026-29084: Forceu Gokapi CSRF Vulnerability

  • CVE-2026-28683: Forceu Gokapi XSS 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