QID 981412

QID 981412: Nodejs (npm) Security Update for @github/paste-markdown (GHSA-gpfj-4j6g-c4w9)

Security update has been released for @github/paste-markdown to fix the vulnerability.

Note: The preceding description block is extracted directly from the security advisory. Using automation, we have attempted to clean and format it as much as possible without introducing additional issues.

A self Cross-Site Scripting vulnerability exists in the @github/paste-markdown library. If the clipboard data contains the string `<table>`, a **div** is dynamically created, and the clipboard content is copied into its **innerHTML** property without any sanitization, resulting in improper execution of JavaScript in the browser of the victim (the user who pasted the code). Users directed to copy text from a malicious website and paste it into pages that utilize this library are affected.

The following @github/paste-markdown code snippet is triggered when the user pastes something and the browser's clipboard data contains an entry whose content-type is **text/HTML**.

```typescript
function generateText(transfer: DataTransfer): string | undefined {
if (Array.from(transfer.types).indexOf('text/html') === -1) return

let html = transfer.getData('text/html')
if (!/<table/i.test(html)) return

html = html.replace(/<meta.*?>/, ')

const el = document.createElement('div')
el.innerHTML = html
const tables = el.querySelectorAll('table')

for (const table of tables) {
if (table.closest('[data-paste-markdown-skip]')) {
table.replaceWith(new Text(table.textContent || '))
}
const formattedTable = tableMarkdown(table)
table.replaceWith(new Text(formattedTable))
}

return el.innerHTML
}
```

  • CVSS V3 rated as High - 6.1 severity.
  • CVSS V2 rated as Medium - 4.3 severity.
  • Solution
    A security patch was released in [version 0.3.4](https://github.com/github/paste-markdown/releases/tag/v0.3.4).Workaround:
    A Content Security Policy that prevents `unsafe-inline` helps reduce the likelihood of this vulnerability being exploited in modern browsers.

    <!--
    Vendor References

    CVEs related to QID 981412

    Software Advisories
    Advisory ID Software Component Link
    GHSA-gpfj-4j6g-c4w9 @github/paste-markdown URL Logo github.com/advisories/GHSA-gpfj-4j6g-c4w9

    © CVE.report 2026

    Use of this information constitutes acceptance for use in an AS IS condition. There are NO warranties, implied or otherwise, with regard to this information or its use. Any use of this information is at the user's risk. It is the responsibility of user to evaluate the accuracy, completeness or usefulness of any information, opinion, advice or other content. EACH USER WILL BE SOLELY RESPONSIBLE FOR ANY consequences of his or her direct or indirect use of this web site. ALL WARRANTIES OF ANY KIND ARE EXPRESSLY DISCLAIMED. This site will NOT BE LIABLE FOR ANY DIRECT, INDIRECT or any other kind of loss.

    CVE, CWE, and OVAL are registred trademarks of The MITRE Corporation and the authoritative source of CVE content is MITRE's CVE web site. This site includes MITRE data granted under the following license.

    Free CVE JSON API cve.report/api

    CVE.report and Source URL Uptime Status status.cve.report