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

CVE-2026-28342: OliveTin PasswordHash DoS Vulnerability

CVE-2026-28342 is a denial of service vulnerability in OliveTin that allows unauthenticated attackers to exhaust memory via the PasswordHash API. This post covers technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-28342 Overview

OliveTin is a web interface that provides access to predefined shell commands. A denial of service vulnerability exists in the PasswordHash API endpoint that allows unauthenticated attackers to exhaust container memory by sending concurrent password hashing requests. This resource exhaustion flaw (CWE-400) enables attackers to degrade service performance or cause complete service unavailability.

Critical Impact

Unauthenticated attackers can cause denial of service by exploiting the lack of request throttling and resource limits on the memory-intensive password hashing endpoint.

Affected Products

  • OliveTin versions prior to 3000.10.2

Discovery Timeline

  • 2026-03-05 - CVE CVE-2026-28342 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-28342

Vulnerability Analysis

This vulnerability targets the PasswordHash API endpoint in OliveTin, which performs Argon2id password hashing operations. The endpoint lacks fundamental security controls including authentication requirements, request rate limiting, and resource consumption boundaries. When an attacker issues multiple parallel requests to this endpoint, each request triggers a computationally and memory-intensive hashing operation. The cumulative effect of concurrent operations quickly exhausts the available container memory, resulting in service degradation or complete denial of service.

The underlying issue stems from the use of Argon2id with memory parameters (64 * 1024 KB per operation) without any concurrency controls. In containerized environments where memory is typically constrained, this becomes particularly dangerous as memory exhaustion can crash the entire container.

Root Cause

The root cause is the absence of concurrency limits on the password hashing endpoint. The Argon2id algorithm is intentionally memory-hard to resist brute-force attacks, but this characteristic becomes a vulnerability when exposed to unauthenticated concurrent requests. Without request throttling or a semaphore to limit parallel operations, attackers can amplify resource consumption linearly with each additional concurrent request.

Attack Vector

The attack can be executed remotely over the network without any authentication or user interaction. An attacker simply needs to identify the PasswordHash API endpoint and issue multiple concurrent HTTP requests. The attack is low-complexity and requires no special privileges, making it accessible to unsophisticated threat actors. The impact is limited to availability—there is no confidentiality or integrity breach.

The fix introduces a semaphore-based concurrency limiter that restricts password hashing operations to a maximum of 10 concurrent requests:

go
package api

import (
	"errors"
	"runtime"

	config "github.com/OliveTin/OliveTin/internal/config"
	"github.com/alexedwards/argon2id"
	log "github.com/sirupsen/logrus"
)

var ErrArgon2Busy = errors.New("too many concurrent password operations")

const argon2MaxConcurrent = 10

var argon2Sem = make(chan struct{}, argon2MaxConcurrent)

var defaultParams = argon2id.Params{
	Memory:      64 * 1024,
	Iterations:  4,

Source: GitHub Commit Update

Detection Methods for CVE-2026-28342

Indicators of Compromise

  • Sudden spikes in memory utilization on containers running OliveTin
  • High volume of concurrent requests to the PasswordHash API endpoint from single or multiple source IPs
  • OliveTin service crashes or restarts due to out-of-memory (OOM) conditions
  • HTTP 503 or timeout responses from the OliveTin web interface during suspected attack windows

Detection Strategies

  • Implement network-level monitoring for abnormal request rates to the OliveTin PasswordHash endpoint
  • Configure container orchestration alerts for memory threshold violations on OliveTin pods
  • Deploy web application firewall (WAF) rules to detect and block rapid concurrent requests to authentication endpoints
  • Review OliveTin and container runtime logs for patterns indicating memory exhaustion or OOM kills

Monitoring Recommendations

  • Enable container resource monitoring with alerts for memory usage exceeding 80% of allocated limits
  • Implement request logging for the PasswordHash API endpoint to establish baseline traffic patterns
  • Configure rate limiting at the reverse proxy or load balancer level as an additional defense layer
  • Monitor for repeated failed authentication attempts that may indicate exploitation or reconnaissance

How to Mitigate CVE-2026-28342

Immediate Actions Required

  • Upgrade OliveTin to version 3000.10.2 or later immediately
  • If immediate upgrade is not possible, restrict network access to the OliveTin interface to trusted IP ranges
  • Implement rate limiting at the reverse proxy or load balancer for the PasswordHash endpoint
  • Increase container memory limits temporarily while preparing for the upgrade

Patch Information

The vulnerability has been patched in OliveTin version 3000.10.2. The fix implements a semaphore-based concurrency limiter (argon2MaxConcurrent = 10) that restricts the number of simultaneous password hashing operations. When the limit is reached, additional requests receive an ErrArgon2Busy error, preventing resource exhaustion.

For detailed patch information, see:

  • GitHub Release Version 3000.10.2
  • GitHub Security Advisory GHSA-pc8g-78pf-4xrp
  • GitHub Commit Update

Workarounds

  • Place OliveTin behind a reverse proxy with rate limiting configured for all authentication endpoints
  • Restrict access to the OliveTin web interface using network firewall rules or IP allowlists
  • Deploy OliveTin containers with appropriate memory limits and restart policies to minimize downtime during attacks
  • Consider disabling the PasswordHash endpoint if not actively used until the upgrade can be completed
bash
# Example nginx rate limiting configuration for OliveTin
limit_req_zone $binary_remote_addr zone=olivetin_auth:10m rate=5r/s;

location /api/PasswordHash {
    limit_req zone=olivetin_auth burst=10 nodelay;
    proxy_pass http://olivetin:1337;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOlivetin

  • SeverityHIGH

  • CVSS Score7.5

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

  • GitHub Release Version 3000.10.2

  • GitHub Security Advisory GHSA-pc8g-78pf-4xrp
  • Related CVEs
  • CVE-2026-28789: OliveTin OAuth2 DoS Vulnerability

  • CVE-2026-32102: OliveTin Information Disclosure Flaw

  • CVE-2026-31817: OliveTin Path Traversal Vulnerability

  • CVE-2026-30223: OliveTin JWT 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