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

CVE-2026-30247: Tencent Weknora SSRF Vulnerability

CVE-2026-30247 is a Server-Side Request Forgery flaw in Tencent Weknora that allows attackers to bypass URL validation via HTTP redirects. This post covers technical details, affected versions, and mitigation steps.

Published: March 13, 2026

CVE-2026-30247 Overview

CVE-2026-30247 is a Server-Side Request Forgery (SSRF) vulnerability in Tencent WeKnora, an LLM-powered framework designed for deep document understanding and semantic retrieval. The vulnerability exists in the application's "Import document via URL" feature, which fails to validate redirect targets despite implementing comprehensive initial URL validation. This bypass allows attackers to force the server to access internal services, potentially exposing sensitive internal resources and cloud metadata.

Critical Impact

Attackers can bypass URL validation protections using HTTP redirect chains to access internal services, Docker-specific addresses like host.docker.internal, and potentially cloud metadata endpoints, leading to significant information disclosure.

Affected Products

  • Tencent WeKnora versions prior to 0.2.12

Discovery Timeline

  • 2026-03-07 - CVE-2026-30247 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30247

Vulnerability Analysis

This vulnerability represents a classic SSRF bypass technique where the application's security controls are circumvented through HTTP redirects. While the WeKnora backend implements comprehensive URL validation at the initial request stage—blocking private IP ranges, loopback addresses (127.0.0.1, localhost), reserved hostnames, and cloud metadata endpoints—it fails to apply these same validations when following HTTP redirects (3xx responses).

The flaw enables an attacker to submit a seemingly benign external URL that redirects to restricted internal resources. This is particularly concerning in containerized environments where Docker-specific internal addresses like host.docker.internal are not blocked, potentially allowing access to the host machine's services from within a container.

Root Cause

The root cause is an incomplete implementation of URL validation in the HTTP client handling the document import functionality. The validation logic only inspects the initial URL provided by the user but does not re-validate URLs encountered during HTTP redirect processing. This creates a time-of-check to time-of-use (TOCTOU) gap where the security check occurs on a different URL than the one ultimately accessed.

Additionally, the blocklist does not account for Docker-specific networking features such as host.docker.internal, which resolves to the Docker host in common container runtimes.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Setting up an external web server that responds with an HTTP redirect (301/302) to an internal target
  2. Submitting the attacker-controlled URL to the WeKnora "Import document via URL" feature
  3. The server validates the initial external URL (which passes all checks)
  4. The server follows the redirect to the attacker-specified internal resource
  5. The server accesses internal services, cloud metadata endpoints, or Docker host services

For example, an attacker could redirect to http://169.254.169.254/latest/meta-data/ in AWS environments to retrieve instance metadata and potentially IAM credentials, or to http://host.docker.internal:8080/ to access services running on the Docker host.

For detailed technical information about this vulnerability, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-30247

Indicators of Compromise

  • Unusual outbound requests from the WeKnora application to internal IP ranges (10.x.x.x, 172.16-31.x.x, 192.168.x.x)
  • Access logs showing requests to cloud metadata endpoints (169.254.169.254)
  • HTTP requests to host.docker.internal or similar Docker-specific hostnames
  • Multiple redirect chains in application logs originating from document import operations

Detection Strategies

  • Monitor application logs for document import requests that result in connections to internal IP addresses
  • Implement network-level monitoring to detect outbound connections from the WeKnora service to private IP ranges
  • Alert on any HTTP requests to cloud provider metadata endpoints from application servers
  • Review web server logs for redirect responses followed by requests to internal resources

Monitoring Recommendations

  • Deploy network segmentation and monitor east-west traffic from containers running WeKnora
  • Configure WAF rules to detect and block SSRF patterns in URL parameters
  • Enable verbose logging for the document import functionality to track redirect chains
  • Set up alerts for connections to Docker-specific hostnames from production environments

How to Mitigate CVE-2026-30247

Immediate Actions Required

  • Upgrade Tencent WeKnora to version 0.2.12 or later immediately
  • Review application logs for any suspicious document import activity that may indicate exploitation
  • Implement network-level restrictions to prevent the WeKnora service from accessing internal networks
  • Consider temporarily disabling the "Import document via URL" feature until patching is complete

Patch Information

This vulnerability has been addressed in WeKnora version 0.2.12. The patch implements redirect target validation to ensure all URLs in a redirect chain are validated against the same security controls as the initial request. Organizations should update to this version or later to remediate the vulnerability.

For more details, see the GitHub Security Advisory.

Workarounds

  • Disable HTTP redirect following in the application configuration if the feature supports it
  • Implement network-level firewall rules to block the WeKnora service from accessing internal IP ranges
  • Deploy a forward proxy that validates all outbound requests against an allowlist of permitted domains
  • Use network segmentation to isolate the WeKnora service from internal resources and cloud metadata services
bash
# Example: Block internal network access using iptables
# Apply to the server running WeKnora

# Block access to private IP ranges
iptables -A OUTPUT -m owner --uid-owner weknora -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -m owner --uid-owner weknora -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -m owner --uid-owner weknora -d 192.168.0.0/16 -j DROP

# Block cloud metadata endpoints
iptables -A OUTPUT -m owner --uid-owner weknora -d 169.254.169.254 -j DROP

# Block localhost/loopback
iptables -A OUTPUT -m owner --uid-owner weknora -d 127.0.0.0/8 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechTencent Weknora

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.03%

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

  • CVE-2026-30861: Tencent Weknora RCE Vulnerability

  • CVE-2026-30860: Tencent Weknora RCE Vulnerability

  • CVE-2026-30859: Tencent Weknora Auth Bypass Vulnerability
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