惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
月光博客
月光博客
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
雷峰网
雷峰网
博客园 - 叶小钗
量子位
IT之家
IT之家

NodeJS Security & NodeJS Secure Coding's Blog

Hardening Your npm and pnpm Configs in the Age of Shai-Hulud Argument Injection vulnerability in git-blame@1.4.0 Argument Injection vulnerability in `gits@0.1.8` Command Injection vulnerability in `@fab1o/git@1.4.0` Command Injection vulnerability in `git-contributors` via unsanitized CLI arguments Command Injection vulnerability in `git-q@0.0.3` Command injection vulnerability via unsanitized CLI arguments in touxing/fast-git-clone Command Injection vulnerability in `willitmerge@0.2.1` A Directory Traversal Vulnerability I found in Mastra AI Frameworks MCP Server Mastering NPX: A Cheatsheet for npm and Node.js Power Users Mitigate Supply Chain Security with DevContainers and 1Password for Node.js Local Development The Tale of the Vulnerable MCP Database Server Bad Security Defaults in Mastra AI Frameworks Templates SQL Injection and Bypassing "Read-Only" Mode in Xata's MCP Server Security Advisory for qix npm supply-chain compromise affecting debug and billions of weekly download users How to Mitigate SQL Bypass in MCP Servers Enhancing MCP Server Security: A Guide to Using execFile Argument Injection Vulnerability in ggit How to Bypass Access Control in PostgreSQL in Simple PSQL MCP Server for SQL Injection Command Injection Flaws in ggit: Unveiling a Vulnerability Command Injection Vulnerability in Create MCP Server STDIO Tool Exposes System Monitoring Functions GitHub Kanban MCP Server Command Injection Vulnerability Threatens Developer Workflows Critical Command Injection Flaw in iOS Simulator MCP Server Exposes Development Environments Command Injection Vulnerability Discovered in Codehooks MCP Server: A Critical Security Analysis SSRF Shenanigans in safe-axios: Redirects Open the Backdoor SSRF Vulnerability in safe-axios: Unintended Public Address Classification Bypassing SSRF Safeguards in ssrfcheck: A Case of Incomplete Denylists Don't Be Fooled by Multicast, SSRF Bypass in private-ip Node.js Authentication from Lucia to Better Auth Bypassing SSRF Protection in nossrf: When Your Safeguards Become Loopholes
How I found an XSS in the Nuxt MDC Library for Markdown C...
2025-02-11 · via NodeJS Security & NodeJS Secure Coding's Blog

For many, developers and security experts alike, Cross-site Scripting (XSS) vulnerabilities in modern frontend applications are a solved problem. However, time and time again I find myself learning and discovering new attack vectors and this recent case of Nuxt MDC is exactly such one.

Why Research Nuxt MDC ?

As part of my role as a developer advocate at Snyk, I spent a good amount of time building demo applications that are deliberately vulnerable to security attacks. Specifically in the last couple of years being colored with the rise of LLM use-cases and adoption in many ways from AI-powered code generation to integration of LLM models as part of the AI sauce that powers insights, I’ve been focusing on building fun interactions that make use of GenAI in some way or another.

One of the most popular cases for developers is to integrate with an LLM as part of the i/o of their application interactivity. What’s the prime “hello world” use-case for building LLM-powered applications? A Chatbot! what else :-)

As you can imagine, and probably have experienced already, a Chatbot will need to style and format the text responses. For example, it may respond with bullet points so these need to be properly styled in the web application for a rich user experience. Similarly, it may need to render links, images or render code snippets in a code block. All of those need to be styled by developers.

The LLM itself is often instructed via prompt engineering to always respond in a markdown format, and then developers can utilize various Markdown-to-HTML libraries to render the Markdown response content from the LLM onto the page. This is where the @nuxtjs/mdc library comes into play.

Nuxt MDC (technically the library is named @nuxtjs/mdc) is a community effort to build a Markdown content parser library for Nuxt.js applications. It’s actually quite popularly and widely adopted, spanning about quarter of a million downloads per month from npm.

nuxtjs mdc package on npm

Nuxt MDC Markdown Content Parser

The following is a simple example of the primary use-case that Nuxt developers would use the Nuxt MDC library for:

import { parseMarkdown } from '@nuxtjs/mdc/runtime';

import { useAsyncData } from '#imports';

let val = `<script type="text/javascript">alert("XSS");</script\>`;

const md = `# Simple Async Example

:async-component

This page contains a simple async component example (above) that simulates async data fetching inside of the \`MDCRenderer\` component.

You can refresh the page to see there are no hydration errors in the console.

Navigate to the [No Async Components page](/async-components/no-async), refresh

`;

const { data: ast } = await useAsyncData<any>(() => parseMarkdown(md));

As you can see from the above code snippet, the parseMarkdown function takes in an input string in Markdown formatting and returns an Abstract Syntax Tree (AST) representation of the passed content string that can then be used to translate the structured content into HTML.

Why is XSS in Nuxt MDC a big deal?

Given that Nuxt applications will be receiving LLM responses in Markdown format and prompt injection is a common attack vector for LLMs, a path is drawn from tricking an LLM to respond with payloads that would be replied by the LLM and would trigger an XSS attack in the Nuxt application.

Consider the following example for such XSS payloads:

- Attempt 1:

[URL](javascript&#58document;alert&#40;1&#41;)

- Attempt 3:

<img src="x" onError=alert(1) />

- Attempt 4:

<a href="javascript:alert(1)"> this gets sanitizied, yay!</a>

- Attempt 5:

<IMG onmouseover="alert('xxs')">

- Attempt 6:

<img src="javaSCRIPTmark:alert(1)" />

And as you can see in the screenshot from the Stackblitz’s hosted application running Nuxt and the MDC package, they’re rendered and properly escaped (a little harder to tell, but trust me, none of the above payloads would trigger an alert box in the browser):

nuxt mdc example async markdown component test for XSS

You can access this live example on Stackblitz.

Testing Nuxt MDC for XSS Vulnerabilities

So this is how I discovered the XSS vulnerability in the Nuxt MDC library that is now identified as CVE-2025-24981.

An unsafe parsing logic of the URL text that is extracted from markdown content can lead to arbitrary JavaScript code due to a bypass to the existing guards around the javascript: protocol scheme in the URL.

The parsing logic is implemented at /src/runtime/parser/utils/props.ts and maintains a deny-list approach to filtering potential malicious payload. It does so by matching protocol schemes like javascript: and others. Specifically, this is the code from the mdc library’s parser that is not secure enough:

export const unsafeLinkPrefix = [

'javascript:',

'data:text/html',

'vbscript:',

'data:text/javascript',

'data:text/vbscript',

'data:text/css',

'data:text/plain',

'data:text/xml'

]

export const validateProp = (attribute: string, value: string) => {

if (attribute.startsWith('on')) {

return false

}

if (attribute === 'href' || attribute === 'src') {

return !unsafeLinkPrefix.some(prefix => value.toLowerCase().startsWith(prefix))

}

return true

}

Can you see the issue?

The above security guards can be bypassed by an adversarial that provides JavaScript URLs with HTML entities encoded via hex string. Yep, that’s the bypass!

Nuxt MDC XSS Proof of Concept

The following URL payloads if provided to the markdown parsing library (such as through the usage of import { parseMarkdown } from '@nuxtjs/mdc/runtime';) will trigger the alert() dialog:

# ✅ This is correctly escaped by the parser

- XSS Attempt:

<a href="javascript:alert(1)"> this gets sanitizied, yay!</a>

# ❌ These are vulnerable and not escaped

- Bypass 1:

<a href="jav&#x09;ascript:alert('XSS');">Click Me 1</a>

- Bypass 2:

<a href="jav&#x0A;ascript:alert('XSS');">Click Me 2</a>

- Bypass 3:

<a href="jav&#10;ascript:alert('XSS');">Click Me 3</a>

What’s the impact here? Users who consume this library and perform markdown parsing from unvalidated sources such as LLM generative text responses, user input and other untrusted sources could result in rendering vulnerable XSS anchor links.

And so, all versions of @nuxtjs/mdc prior to 0.13.3 are vulnerable to this XSS attack vector with a CVSS rating of critical severity.

The Security Fix

Here’s a TL;DR for a suggested fix to the XSS vulnerability above that was shared with the maintainers of the Nuxt MDC library:

  1. Decode the URL
  2. Strip HTML entities via the regex
  3. Pass this to new URL()
  4. Then use new URL() to parse the protocol scheme and only proceed with the URL if it satisfies your allow list (IMO only allow https://). If you however need to maintain some backported compatibility then perhaps at this point of parsing you can continue with the deny-list but it’s less recommended.

I have put forward the described fix in this pull request to the project. It did bring up a few regressions due to the different use-cases of how links are used in different ways in Markdown content, and was followed with a couple more commits to address these regressions.

What should Nuxt developers do next?

Firstly, despite the release of 0.13.3 has been made that fixes this XSS security vulnerability and that has been available for almost a week now, the downloads of the vulnerable versions are still considerably high. This means that many Nuxt applications relying on the MDC library are potentially vulnerable:

nuxtjs mdc package download counts on npm

Secondly, you should always be cautious and pay a lot of attention to how you render user input or otherwise dynamic data such as that originating from LLM responses. In those cases especially you should carefully review the libraries and the code you depend on to audit that there aren’t weaknesses in security controls that could lead to XSS vulnerabilities.

About Cross-site Scripting (XSS) in Modern Web Applications

I opened this article with the hypothesis that many software developers and security practitioenrs believe that Cross-site Scripting (XSS) vulnerabilities are a security issue of the past. Why? That’s because modern frontend frameworks, spearheaded by React but mostly all of them at this pointed, have adopted built-in security controls such as output escaping and sanitization that addresses JavaScript code injection in the browser.

React for example, uses the JSX syntax to write HTML in JavaScript. If a user input is rendered as part of the JSX template, React will automatically apply output encoding in the form of HTML entities to escape the user input. This is why the following code snippet in React is safe from XSS attacks:

const userInput = '<script>alert("XSS")</script>';

function App() {

return <div>{userInput}</div>;

}

Svelte, Vue.js and other modern frontend frameworks follow the same principle of secure output escaping by default and provide an escape hatch for developers to render raw HTML if needed. One popular example for that is React’s own dangerouslySetInnerHTML property that can be applied to a component as part of the JSX template.