Lucene search

K
osvGoogleOSV:GHSA-4M3G-6R7G-JV4F
HistoryJun 05, 2024 - 2:15 p.m.

Arbitrary JavaScript execution due to using outdated libraries

2024-06-0514:15:50
Google
osv.dev
10
arbitrary javascript execution
outdated library vulnerability
pdf.js dependency
malicious script injection
social engineering risk
cve-2024-4367
gradio-pdf project
cross-site scripting (xss)
fontmatrix exploit
mitigation
pdf file upload vulnerability
upgrade recommendation
reference links
codeanlabs blog
mozilla pdf.js pull

AI Score

6.5

Confidence

High

EPSS

0

Percentile

10.3%

Summary

gradio-pdf projects with dependencies on the pdf.js library are vulnerable to CVE-2024-4367, which allows arbitrary JavaScript execution.

PoC

  1. Generate a pdf file with a malicious script in the fontmatrix. (This will run alert(‘XSS’).)
    poc.pdf

  2. Run the app. In this PoC, I’ve used the demo for a simple proof.
    1

  3. Upload a PDF file containing the script.
    2

  4. Check that the script is running.
    3

Impact

Malicious scripts can be injected into the code, and when linked with vulnerabilities such as CSRF, it can cause even greater damage. In particular, It can become a source of further attacks, especially when linked to social engineering.

Mitigation

Upgrade the pdf.js to v4.2.67, which removes the vulnerability. (or set the option isEvalSupported to false.)

Reference

  1. https://codeanlabs.com/blog/research/cve-2024-4367-arbitrary-js-execution-in-pdf-js/
  2. https://github.com/mozilla/pdf.js/pull/18015