LOWCVE-2025-15454CVSS 3.1

zhanglun lettura RSS ContentRender.tsx cross site scripting

翻译中…

平台

react

组件

cba7c19a4eafcb326d0e912adf132be3

修复版本

0.1.1

0.1.2

0.1.3

0.1.4

0.1.5

0.1.6

0.1.7

0.1.8

0.1.9

0.1.23

0.1.11

0.1.12

0.1.13

0.1.14

0.1.15

0.1.16

0.1.17

0.1.18

0.1.19

0.1.20

0.1.21

0.1.22

0.1.23

AI Confidence: highNVDEPSS 0.0%已审阅: 2026年5月
正在翻译为您的语言…

A cross-site scripting (XSS) vulnerability has been identified in lettura, a React component, affecting versions 0.1.0 through 0.1.22. This vulnerability allows remote attackers to inject malicious scripts by manipulating the RSS Handler component. The issue stems from improper handling of data within the ContentRender.tsx file. A patch, version 0.1.23, has been released to address this security concern.

影响与攻击场景翻译中…

Successful exploitation of CVE-2025-15454 allows an attacker to execute arbitrary JavaScript code within the context of a user's browser session. This can lead to a variety of malicious outcomes, including session hijacking, defacement of the application, and theft of sensitive user data. The attacker could potentially gain access to user credentials, personal information, or other confidential data stored within the application. Given the component's role in handling RSS feeds, an attacker could inject malicious scripts into these feeds, impacting all users who consume them. The public availability of the exploit increases the risk of widespread exploitation.

利用背景翻译中…

The exploit for CVE-2025-15454 is publicly available, indicating a higher risk of exploitation. The vulnerability's CVSS score is LOW, suggesting that exploitation may require some level of attacker skill or specific conditions. As of the publication date, there is no indication of this vulnerability being actively exploited in the wild, but the public availability of the exploit warrants immediate attention and remediation.

哪些人处于风险中翻译中…

Applications utilizing the lettura React component in their RSS feed handling functionality are at risk. This includes websites and web applications that display RSS content, particularly those relying on external feeds. Shared hosting environments where multiple applications share the same codebase are also at increased risk, as a vulnerability in one application could potentially impact others.

检测步骤翻译中…

• react: Inspect the src/components/ArticleView/ContentRender.tsx file for any unsanitized user input used in rendering the RSS feed. Look for patterns where data from the feed is directly inserted into the DOM without proper encoding.

// Example of potentially vulnerable code
const renderArticle = (article) => {
  return <div>{article.title}</div>; // Vulnerable if article.title is not sanitized
};

• generic web: Monitor access logs for unusual requests targeting the RSS feed endpoint. Look for requests containing suspicious characters or patterns commonly associated with XSS attacks.

grep -i '<script' /var/log/apache2/access.log

攻击时间线

  1. Disclosure

    disclosure

威胁情报

漏洞利用状态

概念验证未知
CISA KEVNO
互联网暴露

EPSS

0.01% (3% 百分位)

CISA SSVC

利用情况poc
可自动化no
技术影响partial

CVSS 向量

威胁情报· CVSS 3.1CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N/E:P/RL:O/RC:C3.1LOWAttack VectorNetwork攻击者如何到达目标Attack ComplexityHigh利用漏洞所需的条件Privileges RequiredNone攻击所需的认证级别User InteractionRequired是否需要受害者采取行动ScopeUnchanged超出受影响组件的影响范围ConfidentialityNone敏感数据泄露风险IntegrityLow数据未授权篡改风险AvailabilityNone服务中断风险nextguardhq.com · CVSS v3.1 基础分数
这些指标意味着什么?
Attack Vector
网络 — 可通过互联网远程利用,无需物理或本地访问。攻击面最大。
Attack Complexity
高 — 需要竞态条件、非默认配置或特定情况。难以可靠利用。
Privileges Required
无 — 无需认证,无需凭证即可利用。
User Interaction
需要 — 受害者必须打开文件、点击链接或访问特制页面。
Scope
未改变 — 影响仅限于脆弱组件本身。
Confidentiality
无 — 无机密性影响。
Integrity
低 — 攻击者可修改部分数据,影响有限。
Availability
无 — 无可用性影响。

受影响的软件

组件cba7c19a4eafcb326d0e912adf132be3
供应商zhanglun
影响范围修复版本
0.1.0 – 0.1.00.1.1
0.1.1 – 0.1.10.1.2
0.1.2 – 0.1.20.1.3
0.1.3 – 0.1.30.1.4
0.1.4 – 0.1.40.1.5
0.1.5 – 0.1.50.1.6
0.1.6 – 0.1.60.1.7
0.1.7 – 0.1.70.1.8
0.1.8 – 0.1.80.1.9
0.1.9 – 0.1.90.1.23
0.1.10 – 0.1.100.1.11
0.1.11 – 0.1.110.1.12
0.1.12 – 0.1.120.1.13
0.1.13 – 0.1.130.1.14
0.1.14 – 0.1.140.1.15
0.1.15 – 0.1.150.1.16
0.1.16 – 0.1.160.1.17
0.1.17 – 0.1.170.1.18
0.1.18 – 0.1.180.1.19
0.1.19 – 0.1.190.1.20
0.1.20 – 0.1.200.1.21
0.1.21 – 0.1.210.1.22
0.1.22 – 0.1.220.1.23

弱点分类 (CWE)

时间线

  1. 已保留
  2. 发布日期
  3. 修改日期
  4. EPSS 更新日期

缓解措施和替代方案翻译中…

The primary mitigation for CVE-2025-15454 is to upgrade to version 0.1.23 of lettura. If upgrading is not immediately feasible, consider implementing input validation and output encoding on the RSS Handler component to sanitize user-supplied data. Web application firewalls (WAFs) configured to detect and block XSS payloads can provide an additional layer of defense. Carefully review and sanitize any data received from external sources, particularly RSS feeds, to prevent malicious scripts from being injected. After upgrading, confirm the fix by attempting to inject a simple XSS payload through the RSS feed and verifying that it is properly sanitized.

修复方法翻译中…

Actualice la versión de lettura a la versión 0.1.23 o superior. Esto corrige la vulnerabilidad de cross-site scripting en el componente RSS Handler. La actualización se puede realizar reemplazando el archivo src/components/ArticleView/ContentRender.tsx con la versión parcheada.

CVE 安全通讯

漏洞分析和关键警报直接发送到您的邮箱。

常见问题翻译中…

What is CVE-2025-15454 — XSS in lettura React Component?

CVE-2025-15454 is a cross-site scripting (XSS) vulnerability affecting versions 0.1.0–0.1.22 of the lettura React component, allowing remote code execution.

Am I affected by CVE-2025-15454 in lettura React Component?

You are affected if your application uses lettura versions 0.1.0 through 0.1.22 and handles RSS feeds without proper input sanitization.

How do I fix CVE-2025-15454 in lettura React Component?

Upgrade to version 0.1.23 of lettura. Implement input validation and output encoding as a temporary workaround if upgrading is not immediately possible.

Is CVE-2025-15454 being actively exploited?

While there's no confirmed active exploitation, the public availability of the exploit increases the risk of future attacks.

Where can I find the official lettura advisory for CVE-2025-15454?

Refer to the project's repository or documentation for the official advisory regarding CVE-2025-15454.

你的项目受影响吗?

上传你的依赖文件,立即了解此CVE和其他CVE是否影响你。