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

CVE-2026-30953: LinkAce SSRF Vulnerability

CVE-2026-30953 is an SSRF flaw in LinkAce that allows attackers to make server-side requests to internal networks and cloud metadata endpoints. This post covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-30953 Overview

CVE-2026-30953 is a Server-Side Request Forgery (SSRF) vulnerability affecting LinkAce, a self-hosted archive application for collecting website links. The vulnerability exists in the link creation functionality where the server fetches HTML metadata from user-provided URLs without properly validating whether those URLs point to internal or private network addresses.

When a user creates a link via POST /links, the server calls LinkRepository::create() which in turn invokes HtmlMeta::getFromUrl() to fetch metadata. The LinkStoreRequest validation rules fail to include the existing NoPrivateIpRule class, allowing attackers with authenticated access to make server-side requests to internal network addresses, Docker service hostnames, and cloud metadata endpoints.

Critical Impact

Authenticated attackers can leverage this SSRF vulnerability to access internal network resources, retrieve sensitive cloud metadata (such as AWS/GCP/Azure instance credentials), and enumerate internal services that should not be accessible from the public internet.

Affected Products

  • LinkAce (self-hosted link archive application)

Discovery Timeline

  • 2026-03-10 - CVE CVE-2026-30953 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30953

Vulnerability Analysis

This SSRF vulnerability (CWE-918) allows authenticated users to manipulate the server into making HTTP requests to arbitrary internal resources. The root cause is an inconsistent application of security controls within the LinkAce codebase.

The application already contains a defensive mechanism—the NoPrivateIpRule class located at app/Rules/NoPrivateIpRule.php—designed to prevent requests to private IP ranges and internal hostnames. However, this rule is only enforced in FetchController.php (line 99) and critically omitted from the primary link creation path in LinkStoreRequest.

This inconsistency means that while one endpoint is protected against SSRF attacks, the main link creation functionality remains vulnerable. Attackers can exploit this to probe internal network infrastructure, access cloud provider metadata endpoints (commonly at 169.254.169.254), communicate with Docker-internal services by hostname, and potentially exfiltrate sensitive configuration data or credentials.

Root Cause

The vulnerability stems from inconsistent validation rule application across different code paths. The LinkStoreRequest validation rules do not include NoPrivateIpRule, while FetchController.php properly implements this protection. This represents a defense-in-depth failure where security controls were implemented but not uniformly applied across all user-controlled input vectors that trigger server-side HTTP requests.

Attack Vector

An authenticated attacker can exploit this vulnerability by submitting a link creation request with a malicious URL pointing to internal resources. The attack requires only low privileges (authenticated user access) and can be executed remotely over the network without user interaction.

Attack scenarios include:

  1. Cloud Metadata Access: Submitting URLs like http://169.254.169.254/latest/meta-data/ to retrieve cloud instance credentials and configuration
  2. Internal Service Enumeration: Using Docker service hostnames or internal IP ranges to discover and interact with backend services
  3. Firewall Bypass: Leveraging the server's trusted network position to access resources that are protected from external access

The vulnerability has a changed scope impact, meaning successful exploitation can affect resources beyond the vulnerable component's security scope, potentially compromising confidentiality of internal systems and cloud infrastructure.

Detection Methods for CVE-2026-30953

Indicators of Compromise

  • Outbound HTTP requests from the LinkAce server to internal IP ranges (e.g., 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, 127.0.0.0/8)
  • Requests to cloud metadata endpoints such as 169.254.169.254 originating from the application
  • Unusual link creation requests containing internal hostnames or Docker service names
  • Access logs showing repeated link creation attempts with varying internal IP addresses (enumeration behavior)

Detection Strategies

  • Monitor application logs for POST /links requests containing URLs with private IP addresses or cloud metadata endpoint addresses
  • Implement network-level detection for outbound connections from the LinkAce server to RFC 1918 address spaces
  • Review web server access logs for patterns indicating internal network scanning through the link creation endpoint
  • Deploy egress filtering alerts for connections to 169.254.169.254 from application servers

Monitoring Recommendations

  • Enable verbose logging in LinkAce to capture full URL parameters in link creation requests
  • Configure network monitoring to alert on any outbound connections from the web application tier to internal service ports
  • Implement SIEM rules to correlate multiple failed internal resource access attempts with link creation activity
  • Monitor for unusual patterns of link creation from single user accounts that may indicate reconnaissance activity

How to Mitigate CVE-2026-30953

Immediate Actions Required

  • Review the GitHub Security Advisory for official guidance and patch information
  • Apply the NoPrivateIpRule validation to the LinkStoreRequest validation rules for the URL field
  • Implement network-level egress filtering to block outbound requests from the application server to internal IP ranges and cloud metadata endpoints
  • Audit user activity logs to identify any potential exploitation attempts

Patch Information

Refer to the GitHub Security Advisory GHSA-f2mp-q78r-7jx7 for the latest patch information and remediation guidance from the LinkAce maintainers. The fix involves adding the existing NoPrivateIpRule class to the LinkStoreRequest validation rules, ensuring consistent SSRF protection across all URL input vectors.

Workarounds

  • Configure network firewall rules to prevent the web application server from initiating connections to internal IP ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, 127.0.0.0/8)
  • Block outbound access to cloud metadata endpoints (169.254.169.254) at the network level
  • Manually apply the NoPrivateIpRule validation to the link creation endpoint by modifying LinkStoreRequest validation rules
  • Restrict link creation functionality to trusted administrator accounts until the patch can be applied

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechLinkace

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33953: LinkAce SSRF Vulnerability

  • CVE-2026-40905: LinkAce Auth Bypass Vulnerability

  • CVE-2026-35516: LinkAce Information Disclosure Vulnerability

  • CVE-2026-33954: LinkAce Information Disclosure 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