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-2020-37103

CVE-2020-37103: DotNetNuke 9.5 XSS Vulnerability

CVE-2020-37103 is a persistent cross-site scripting vulnerability in DotNetNuke 9.5 that lets users upload malicious XML files through journal tools. This article covers technical details, affected versions, and mitigations.

Published: February 6, 2026

CVE-2020-37103 Overview

CVE-2020-37103 is a persistent cross-site scripting (XSS) vulnerability affecting DotNetNuke 9.5, a popular content management system built on the .NET framework. This vulnerability allows authenticated users with normal privileges to upload malicious XML files containing executable scripts through the journal tools feature. By leveraging XHTML namespace scripts within specially crafted XML files, attackers can execute arbitrary JavaScript code in the browsers of other users who view the malicious content.

Critical Impact

Authenticated attackers can achieve persistent JavaScript execution in victim browsers, potentially bypassing CSRF protections and escalating to more damaging attacks including session hijacking and credential theft.

Affected Products

  • DotNetNuke 9.5

Discovery Timeline

  • 2026-02-03 - CVE-2020-37103 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2020-37103

Vulnerability Analysis

This vulnerability stems from insufficient input validation in DotNetNuke's journal tools feature, which fails to properly sanitize XML file uploads. The journal tools component is designed to allow users to share content and files, but it does not adequately filter or neutralize malicious script content embedded within XML files using XHTML namespaces.

When a user uploads an XML file containing scripts within an XHTML namespace declaration, the application stores this content without proper sanitization. Subsequently, when other users view the journal entry containing the malicious file, the embedded JavaScript is rendered and executed in their browser context. This creates a stored (persistent) XSS condition, making it particularly dangerous as the malicious payload persists on the server and affects multiple users over time.

The vulnerability is classified under CWE-79 (Improper Neutralization of Input During Web Page Generation), indicating a fundamental failure to sanitize user-controllable input before rendering it in web pages.

Root Cause

The root cause lies in inadequate input validation and output encoding within the journal tools file upload functionality. Specifically, the application fails to:

  1. Properly validate XML file content to detect malicious script elements
  2. Neutralize XHTML namespace declarations that can contain executable JavaScript
  3. Apply proper output encoding when rendering user-uploaded content

The journal tools feature trusts the content of uploaded XML files without performing sufficient sanitization, allowing the XHTML namespace trick to bypass security controls.

Attack Vector

The attack requires network access and authentication with standard user privileges. The attacker crafts a malicious XML file containing JavaScript embedded within XHTML namespace elements. When uploaded through the journal tools feature, the malicious content is stored on the server. Victims who subsequently view the affected journal entry have the attacker's JavaScript executed in their browser context.

This attack vector is particularly effective because:

  • It requires only low-privilege user authentication
  • The payload persists on the server, affecting multiple victims
  • It can bypass certain CSRF protections by executing in the context of authenticated sessions
  • The malicious content appears to come from a trusted source (the DNN platform itself)

For detailed technical information about this vulnerability, see the Medium Article on DNN Security and the Exploit-DB #48124.

Detection Methods for CVE-2020-37103

Indicators of Compromise

  • XML files uploaded through journal tools containing XHTML namespace declarations with embedded <script> tags
  • Unusual JavaScript execution originating from journal entry pages
  • Reports of unexpected browser behavior or pop-ups when viewing journal content
  • Log entries showing XML file uploads with suspicious XHTML namespace patterns

Detection Strategies

  • Monitor file upload activity in DotNetNuke journal tools for XML files containing XHTML namespace declarations
  • Implement web application firewall (WAF) rules to detect and block XSS payloads in uploaded content
  • Review server logs for suspicious XML file uploads, particularly those with script-related content
  • Deploy browser-based XSS detection tools to identify malicious script execution

Monitoring Recommendations

  • Enable detailed logging for all file upload activities within the DotNetNuke journal module
  • Configure alerting for XML file uploads containing potential XSS indicators such as <script>, javascript:, or event handlers
  • Implement Content Security Policy (CSP) headers to detect and report script execution from unexpected sources
  • Regularly audit journal entries for suspicious or malformed XML content

How to Mitigate CVE-2020-37103

Immediate Actions Required

  • Restrict file upload permissions to trusted users only until a patch is applied
  • Implement strict Content Security Policy (CSP) headers to limit script execution
  • Review and audit existing journal entries for potentially malicious XML content
  • Consider temporarily disabling the journal tools feature if not business-critical

Patch Information

Organizations should review the DNN Software Official Site for the latest security updates and patches addressing this vulnerability. Additionally, consult the VulnCheck Advisory on DotNetNuke for detailed remediation guidance.

Ensure your DotNetNuke installation is updated to a version that includes fixes for this stored XSS vulnerability in the journal tools feature.

Workarounds

  • Disable or restrict access to the journal tools file upload feature until patching is possible
  • Implement input validation at the web server level to strip XHTML namespace declarations from uploaded XML files
  • Deploy a Web Application Firewall (WAF) with rules specifically targeting XSS patterns in file uploads
  • Apply strict Content Security Policy headers to prevent inline script execution
bash
# Example: Implementing Content Security Policy in IIS web.config
# Add to <system.webServer><httpProtocol><customHeaders> section
# <add name="Content-Security-Policy" value="default-src 'self'; script-src 'self'; object-src 'none';" />

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechDotnetnuke

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:L/VI:L/VA:N/SC:L/SI:L/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • DNN Software Official Site

  • Medium Article on DNN Security

  • Exploit-DB #48124

  • VulnCheck Advisory on DotNetNuke
  • Related CVEs
  • CVE-2025-64095: DNN (DotNetNuke) XSS Vulnerability

  • CVE-2025-59545: DotNetNuke Prompt Module XSS Vulnerability

  • CVE-2025-52488: DNN Platform NTLM Hash Disclosure Flaw

  • CVE-2025-32035: DNN (DotNetNuke) 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