CVE-2026-45348
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedpyLoad is a free and open-source download manager written in Python. Prior to 0.5.0b3.dev100, the packages.js template at src/pyload/webui/app/themes/modern/templates/js/packages.js:172 interpolates a stored link URL into a template literal inside single-quoted HTML and then writes the result to the DOM via $(div).html(html). No escaping runs between the API value and innerHTML. An attacker (Alice) who can submit a package link puts a single quote plus event handler into the URL, breaks out of the attribute, and executes JavaScript in every operator's browser that opens the downloads view. The theme does not set a Content Security Policy that restricts inline script or event handlers. This vulnerability is fixed in 0.5.0b3.dev100.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidencepyLoad versions prior to 0.5.0b3.dev100 contain a stored Cross-Site Scripting (XSS) vulnerability in the packages.js template. The application directly interpolates a stored link URL into a single-quoted HTML attribute within a template literal, then writes the result to the DOM using $(div).html(html) without any sanitization or escaping. An attacker who can submit package links can inject a single quote followed by an event handler to break out of the attribute and execute arbitrary JavaScript in any operator's browser.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- Required
- Scope
- Changed
- Confidentiality
- High
- Integrity
- High
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify pyLoad versionLocate the pyLoad installation and check its version file, or access the web interface and look for version information in the footer or admin panel. Common locations include a version.py file or the application's about/settings page.Affected if The installed version is earlier than 0.5.0b3.dev100 (e.g., 0.5.0b3.dev99, 0.4.x, or earlier releases).
-
Verify packages.js template existsInspect the pyLoad web application files for the presence of packages.js or a similar template file that handles package link display. This is typically found in the templates or static assets directory of the web interface.Affected if The template file exists and contains JavaScript code that uses $(div).html() or similar methods to render user-supplied link URLs into the DOM.
-
Confirm web interface is enabledCheck the pyLoad configuration (typically pyload.conf or settings) to determine whether the web interface/API is active and accessible to operators.Affected if The web interface is enabled and operators can access the package management features where submitted links are displayed.
-
Check if link submission feature is accessibleDetermine whether any user role (including non-admin operators) can add or submit package links through the web interface or API.Affected if Operators or any users with access can submit package links that get stored and rendered through the vulnerable template.
You are affected if pyLoad version is prior to 0.5.0b3.dev100 AND the web interface with package link display is enabled and accessible to users who can submit links.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade pyLoad to version 0.5.0b3.dev100 or later, which implements proper escaping. Additionally, configure a Content Security Policy (CSP) that restricts inline scripts and event handlers to provide defense-in-depth against XSS attacks.
0.5.0b3.dev100
- 1. Identify the current pyLoad version by checking the installed package or source code.
- 2. Upgrade pyLoad to version 0.5.0b3.dev100 or later. This can typically be done via pip (pip install --upgrade pyload), or by pulling the latest Docker image if using containerized deployment.
- 3. After upgrading, verify the fix by checking that src/pyload/webui/app/themes/modern/templates/js/packages.js no longer interpolates raw URL values into HTML template literals without escaping.
- 4. For operators who cannot upgrade immediately, a temporary mitigation is to configure a Content Security Policy (CSP) header in the web server or reverse proxy to restrict inline scripts and event handlers (e.g., 'script-src 'self'; style-src 'self' 'unsafe-inline'').
- 5. Restrict the ability to submit/add package links to trusted users only until the upgrade is completed.
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation3.0 h
- Implementation3.0 h
- Testing2.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,880.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-45348 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-45348 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data