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-2026-34722

CVE-2026-34722: Zammad Auth Bypass Vulnerability

CVE-2026-34722 is an authorization bypass flaw in Zammad helpdesk system affecting ticket creation endpoints. Attackers can exploit missing authorization checks when using link parameters. This article covers technical details, affected versions, impact, and mitigation steps.

Published: April 10, 2026

CVE-2026-34722 Overview

CVE-2026-34722 is a Missing Authorization vulnerability affecting Zammad, a web-based open source helpdesk and customer support system. The vulnerability exists in the ticket creation endpoint, which fails to properly enforce authorization checks when the related parameter for adding links is used. This allows unauthorized users to potentially manipulate ticket links without proper authentication or authorization controls.

Critical Impact

Unauthorized access to ticket linking functionality could allow attackers to associate malicious or misleading links with support tickets, potentially compromising ticket integrity and customer support operations.

Affected Products

  • Zammad versions prior to 7.0.1
  • Zammad versions prior to 6.5.4

Discovery Timeline

  • 2026-04-08 - CVE CVE-2026-34722 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-34722

Vulnerability Analysis

This vulnerability is classified under CWE-862 (Missing Authorization), indicating that the affected endpoint does not properly verify that users have the required permissions before allowing ticket link operations. In a properly secured application, all endpoints that modify or create resources should verify both authentication (is the user who they claim to be?) and authorization (does this user have permission to perform this action?).

The vulnerable ticket creation endpoint accepts a parameter for adding links to tickets. When this parameter is supplied, the authorization check that would normally validate user permissions is bypassed or missing entirely. This architectural flaw allows unauthenticated or unauthorized users to add links to tickets they should not have access to.

Root Cause

The root cause of this vulnerability is the absence of proper authorization middleware or checks on the ticket creation endpoint when the link-adding parameter is utilized. The application fails to validate that the requesting user has the necessary permissions to add links to tickets, violating the principle of least privilege.

This is a common pattern in web applications where certain parameters or features are added to existing endpoints without ensuring that all code paths enforce consistent authorization policies. The link-adding functionality appears to have been implemented without integrating the authorization checks present elsewhere in the ticketing system.

Attack Vector

The attack leverages network-accessible API endpoints without requiring user interaction. An attacker can craft HTTP requests to the ticket creation endpoint with the link parameter included. Since no authentication or authorization is required when this specific parameter is used, the attacker can:

  1. Identify the vulnerable ticket creation endpoint
  2. Submit requests with the link-adding parameter populated
  3. Associate arbitrary links with tickets without authorization
  4. Potentially manipulate ticket data or inject malicious content into the helpdesk system

The vulnerability can be exploited remotely over the network with low attack complexity and requires no privileges or user interaction, though the impact is limited to confidentiality and integrity concerns rather than full system compromise.

Detection Methods for CVE-2026-34722

Indicators of Compromise

  • Unusual API requests to ticket creation endpoints containing link parameters from unauthenticated sessions
  • Unexpected links appearing on tickets without corresponding authorized user activity
  • HTTP requests to the ticket creation API endpoint from suspicious IP addresses or without valid session tokens
  • Anomalous ticket modification patterns in Zammad audit logs

Detection Strategies

  • Monitor HTTP access logs for requests to ticket creation endpoints that include link parameters without proper authentication headers
  • Implement web application firewall (WAF) rules to detect and alert on suspicious ticket API activity
  • Review Zammad application logs for ticket link operations performed by unauthenticated or unauthorized users
  • Deploy API monitoring tools to track unusual patterns in ticket creation and modification requests

Monitoring Recommendations

  • Enable verbose logging for all ticket-related API endpoints in Zammad
  • Set up alerting for failed authorization attempts and unusual API access patterns
  • Regularly audit ticket links and associations for unauthorized modifications
  • Implement rate limiting on ticket creation endpoints to mitigate automated exploitation attempts

How to Mitigate CVE-2026-34722

Immediate Actions Required

  • Upgrade Zammad to version 7.0.1 or 6.5.4 immediately to address this vulnerability
  • Review ticket link data for any unauthorized modifications that may have occurred prior to patching
  • Audit API access logs for signs of exploitation
  • Consider temporarily restricting access to ticket creation functionality via network controls until patching is complete

Patch Information

Zammad has released security patches addressing this vulnerability. Organizations running affected versions should upgrade to:

  • Version 7.0.1 for users on the 7.x branch
  • Version 6.5.4 for users on the 6.5.x branch

For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Implement network-level access controls to restrict API endpoint access to trusted IP ranges
  • Deploy a web application firewall (WAF) to filter and monitor requests to ticket creation endpoints
  • Review and harden authentication mechanisms for all API endpoints as a defense-in-depth measure
  • Consider implementing additional authorization checks at the reverse proxy or API gateway level
bash
# Example: Restrict access to Zammad API endpoints via nginx
location /api/v1/tickets {
    # Allow only authenticated requests from trusted networks
    allow 10.0.0.0/8;
    allow 192.168.0.0/16;
    deny all;
    
    # Ensure requests have valid auth headers
    if ($http_authorization = "") {
        return 401;
    }
    
    proxy_pass http://zammad_backend;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechZammad

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:N/SC:N/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-862
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34782: Zammad Auth Bypass Vulnerability

  • CVE-2026-34837: Zammad Auth Bypass Vulnerability

  • CVE-2026-34720: Zammad SSO Authentication Bypass Flaw

  • CVE-2026-34718: Zammad Helpdesk 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