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-2024-9342

CVE-2024-9342: Eclipse Glassfish Auth Bypass Vulnerability

CVE-2024-9342 is an authentication bypass flaw in Eclipse Glassfish that enables brute force login attacks due to unlimited failed login attempts. This article covers technical details, affected versions, and mitigations.

Published: April 8, 2026

CVE-2024-9342 Overview

CVE-2024-9342 is a vulnerability affecting Eclipse GlassFish version 7.0.16 and earlier that allows attackers to perform login brute force attacks due to the absence of rate limiting or account lockout mechanisms on failed login attempts. This authentication weakness (CWE-307: Improper Restriction of Excessive Authentication Attempts) enables malicious actors on adjacent networks to systematically guess user credentials without any protective throttling.

Critical Impact

Attackers on adjacent networks can perform unlimited login attempts against GlassFish administration interfaces, potentially compromising administrative credentials and gaining unauthorized access to application server management functions.

Affected Products

  • Eclipse GlassFish version 7.0.16
  • Eclipse GlassFish versions prior to 7.0.16

Discovery Timeline

  • 2025-07-16 - CVE-2024-9342 published to NVD
  • 2025-07-16 - Last updated in NVD database

Technical Details for CVE-2024-9342

Vulnerability Analysis

This vulnerability stems from a missing security control in Eclipse GlassFish's authentication mechanism. The application server does not implement any form of rate limiting, account lockout, or progressive delay mechanisms for failed login attempts. This design flaw allows attackers with adjacent network access to systematically enumerate valid credentials through brute force attacks against the GlassFish admin console or other authenticated endpoints.

The adjacent network attack vector means that exploitation requires the attacker to be on the same network segment as the target GlassFish server—typically an internal network, VPN, or shared hosting environment. While this limits exposure compared to internet-facing attacks, it remains a significant risk in enterprise environments where lateral movement or insider threats are concerns.

Root Cause

The root cause is the absence of defensive mechanisms against repeated authentication failures (CWE-307). Eclipse GlassFish versions 7.0.16 and earlier lack implementation of:

  • Account lockout policies after consecutive failed login attempts
  • Progressive delays between authentication requests
  • CAPTCHA or similar challenge-response mechanisms
  • IP-based rate limiting for login endpoints

Without these controls, the authentication system treats each login attempt identically regardless of failure history, creating an unlimited attack surface for credential guessing.

Attack Vector

Exploitation occurs via adjacent network access (AV:A), requiring no privileges and no user interaction. An attacker positioned on the same network segment can target the GlassFish administration interface, typically accessible on port 4848, or other authenticated services. The attack workflow involves automated submission of credential combinations against login endpoints, with no server-side mechanisms to detect or prevent the enumeration activity.

The vulnerability primarily impacts confidentiality, as successful brute force attacks lead to credential disclosure. Downstream systems relying on GlassFish for authentication may experience elevated impacts if administrative credentials are compromised.

Detection Methods for CVE-2024-9342

Indicators of Compromise

  • High volumes of authentication failures from single or clustered source IP addresses targeting GlassFish admin console
  • Unusual login patterns showing rapid sequential attempts with varying usernames or passwords
  • Access logs showing requests to /common/adminconsole/login.jsf or authentication endpoints at abnormal rates
  • Multiple failed authentications followed by successful login, indicating potential credential compromise

Detection Strategies

  • Configure centralized logging for GlassFish authentication events and monitor for anomalous failure rates
  • Deploy network intrusion detection rules to identify brute force patterns against GlassFish administrative ports (default 4848)
  • Implement SIEM correlation rules to alert on authentication failures exceeding baseline thresholds within time windows
  • Monitor for credential stuffing indicators such as diverse username attempts from single sources

Monitoring Recommendations

  • Enable detailed audit logging for all authentication events on GlassFish servers
  • Establish baseline metrics for normal authentication failure rates and alert on deviations
  • Implement network flow analysis to detect high-frequency connections to admin interfaces
  • Consider deploying a Web Application Firewall (WAF) with brute force protection capabilities in front of GlassFish

How to Mitigate CVE-2024-9342

Immediate Actions Required

  • Restrict network access to GlassFish administration interfaces to authorized management networks only
  • Implement external rate limiting using a reverse proxy, load balancer, or WAF in front of GlassFish
  • Enable strong password policies requiring complex credentials that resist dictionary attacks
  • Consider implementing multi-factor authentication through external identity providers
  • Review authentication logs for evidence of prior brute force attempts

Patch Information

Monitor Eclipse GlassFish releases for security updates addressing this vulnerability. Refer to the GitLab CVE Assignment Issue for official tracking and remediation guidance. Organizations should plan to upgrade to patched versions when available.

Workarounds

  • Deploy a reverse proxy (nginx, Apache) with rate limiting modules in front of GlassFish administration interfaces
  • Configure firewall rules to restrict access to port 4848 and other admin endpoints to specific management IP ranges
  • Implement fail2ban or similar tools to automatically block IP addresses exhibiting brute force behavior
  • Use VPN or bastion host architecture to add an authentication layer before GlassFish access
bash
# Example nginx rate limiting configuration for GlassFish admin console
limit_req_zone $binary_remote_addr zone=glassfish_admin:10m rate=5r/m;

server {
    listen 443 ssl;
    server_name glassfish-admin.internal;
    
    location /common/adminconsole/ {
        limit_req zone=glassfish_admin burst=3 nodelay;
        proxy_pass https://glassfish-backend:4848;
    }
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechEclipse Glassfish

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:A/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:H/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-307
  • Technical References
  • GitLab CVE Assignment Issue
  • Related CVEs
  • CVE-2024-9329: Eclipse Glassfish 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