CVE-2023-0488: Cross-site Scripting in pyload-ng
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.49854%
CWE
Published
1/27/2023
Updated
2/7/2023
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| pyload-ng | pip | < 0.5.0b3.dev42 | 0.5.0b3.dev42 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from HTML injection in package link generation. Both affected files show the same pattern: constructing <a> tags with raw 'link.url' and 'link.name' values. The patch adds 'onclick='return false'' to prevent link execution, indicating these were active XSS vectors. The functions are vulnerable because they directly interpolate user-controlled data into DOM elements without proper escaping or sanitization, meeting CWE-79 criteria for improper input neutralization during web page generation.