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
    • 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-32255

CVE-2026-32255: Kan Project Management Tool SSRF Vulnerability

CVE-2026-32255 is a server-side request forgery flaw in Kan project management tool that allows unauthenticated attackers to make requests to internal services. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-32255 Overview

Kan is an open-source project management tool that contains a Server-Side Request Forgery (SSRF) vulnerability in versions 0.5.4 and below. The /api/download/attatchment endpoint lacks authentication and URL validation, allowing attackers to make arbitrary HTTP requests from the server to internal services, cloud metadata endpoints, or private network resources.

Critical Impact

Unauthenticated attackers can exploit this SSRF vulnerability to access internal services, retrieve cloud metadata credentials, and probe private network resources without any authentication requirements.

Affected Products

  • Kan project management tool versions 0.5.4 and below
  • All deployments exposing the /api/download/attatchment endpoint
  • Self-hosted Kan instances without reverse proxy restrictions

Discovery Timeline

  • 2026-03-19 - CVE-2026-32255 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-32255

Vulnerability Analysis

This Server-Side Request Forgery (SSRF) vulnerability exists in the Kan project management tool's attachment download functionality. The vulnerable endpoint /api/download/attatchment accepts a user-supplied URL query parameter and passes it directly to the fetch() function server-side without any validation or sanitization. The endpoint then returns the full response body to the user.

The lack of URL validation enables attackers to specify arbitrary URLs, including internal network addresses (e.g., http://169.254.169.254 for cloud metadata services, http://localhost:3000 for local services, or private IP ranges). Since the request originates from the server itself, it bypasses network-level access controls that would normally block external access to these resources.

Root Cause

The root cause of this vulnerability is the absence of URL validation and authentication on the /api/download/attatchment endpoint. The vulnerable code directly passes user-controlled input to fetch() without verifying that the target URL points to an allowed external resource. Additionally, the endpoint lacks any form of authentication, making it accessible to unauthenticated attackers.

Attack Vector

The attack vector is network-based with low complexity. An unauthenticated attacker can craft a malicious request to the vulnerable endpoint with a URL parameter pointing to internal resources. The server processes this request and returns the response, effectively acting as a proxy for the attacker to access internal services. This can lead to exposure of sensitive information such as cloud provider metadata credentials, internal API responses, or configuration data.

typescript
// Security patch in apps/web/src/pages/api/download/attatchment.ts
// feat: add url validation to download attatchment endpoint (#432)
 
import { withRateLimit } from "@kan/api/utils/rateLimit";
 
+import { env } from "~/env";
+
export default withRateLimit(
  { points: 100, duration: 60 },
  async (req: NextApiRequest, res: NextApiResponse) => {
-  if (req.method !== "GET") {
-    return res.status(405).json({ message: "Method not allowed" });
-  }
+    if (req.method !== "GET") {
+      return res.status(405).json({ message: "Method not allowed" });
+    }
 
-  const { url, filename } = req.query;
+    const { url, filename } = req.query;
 
-  if (!url || typeof url !== "string") {
-    return res.status(400).json({
-      message: "url parameter is required",
-    });
-  }
+    if (!url || typeof url !== "string") {
+      return res.status(400).json({ message: "url parameter is required" });
+    }
 
-  try {
-    const downloadFilename = typeof filename === "string"
-      ? encodeURIComponent(filename)

Source: GitHub Commit 53397d8

Detection Methods for CVE-2026-32255

Indicators of Compromise

  • HTTP requests to /api/download/attatchment with URL parameters containing internal IP addresses (e.g., 169.254.169.254, 10.x.x.x, 192.168.x.x, 127.0.0.1)
  • Requests targeting cloud metadata endpoints such as AWS IMDSv1 (http://169.254.169.254/latest/meta-data/)
  • Unusual outbound connections from the Kan server to internal services or localhost ports
  • Access log entries showing unauthenticated requests to the attachment download endpoint with suspicious URL parameters

Detection Strategies

  • Implement web application firewall (WAF) rules to detect SSRF patterns in the url query parameter
  • Monitor server-side outbound HTTP requests for connections to internal IP ranges or cloud metadata endpoints
  • Deploy network intrusion detection signatures for SSRF exploitation attempts targeting common internal services
  • Enable verbose logging on reverse proxies to capture full request URLs to the vulnerable endpoint

Monitoring Recommendations

  • Alert on any requests to /api/download/attatchment containing localhost, private IP ranges, or metadata service addresses
  • Monitor for unusual response sizes from the attachment endpoint that may indicate successful data exfiltration
  • Review application logs for error messages related to internal service connections from the download endpoint
  • Set up anomaly detection for high-frequency requests to the vulnerable endpoint from single IP addresses

How to Mitigate CVE-2026-32255

Immediate Actions Required

  • Upgrade Kan to version 0.5.5 or later immediately
  • Block or restrict access to /api/download/attatchment at the reverse proxy level until patching is complete
  • Review server logs for evidence of exploitation attempts targeting the vulnerable endpoint
  • Audit any cloud credentials or internal service data that may have been exposed through SSRF attacks

Patch Information

The vulnerability has been fixed in Kan version 0.5.5. The patch adds URL validation to the /api/download/attatchment endpoint to prevent SSRF attacks. Organizations should update to this version or later by pulling the latest release from the official GitHub repository. The security fix is documented in the GitHub Security Advisory GHSA-qrx8-9hc6-jvqg.

Workarounds

  • Block or restrict access to /api/download/attatchment at the reverse proxy level (nginx, Cloudflare, etc.)
  • Implement network segmentation to limit the Kan server's ability to reach internal services and cloud metadata endpoints
  • Configure egress filtering to restrict outbound connections from the Kan server to only necessary external resources
  • If the attachment download feature is not required, disable the endpoint entirely at the application or proxy level
bash
# nginx configuration to block the vulnerable endpoint
location /api/download/attatchment {
    deny all;
    return 403;
}

# Alternative: Restrict to authenticated users only via reverse proxy
location /api/download/attatchment {
    auth_request /auth;
    proxy_pass http://backend;
}

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechKan Kan

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.09%

  • Known ExploitedYes
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Release v0.5.5
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-qrx8-9hc6-jvqg
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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