CWE-58 Variant Incomplete

Path Equivalence: Windows 8.3 Filename

This vulnerability occurs when an application's security controls successfully block access to a file's full name on Windows, but fail to protect the shorter 8.3 format version of the same filename,…

Definition

What is CWE-58?

This vulnerability occurs when an application's security controls successfully block access to a file's full name on Windows, but fail to protect the shorter 8.3 format version of the same filename, creating a bypassable loophole.
Windows maintains backward compatibility by automatically generating a short 8.3 filename (like 'DOCUME~1.TXT') for files with longer names. This creates two distinct paths to the same file. If your access control checks only validate the long filename, attackers can simply use the equivalent short name to bypass your restrictions. This is a classic path equivalence flaw where the system sees 'LONGFILENAME.DOC' and 'LONGFI~1.DOC' as different strings, even though they point to the same underlying resource. Developers must normalize and validate both naming formats in their security logic to close this gap.
Auswirkungen in der Praxis

Real-world CVEs caused by CWE-58

  • Multiple web servers allow restriction bypass using 8.3 names instead of long names

  • Source code disclosure using 8.3 file name.

  • Multi-Factor Vulnerability. Product generates temporary filenames using long filenames, which become predictable in 8.3 format.

Wie Angreifer es ausnutzen

Angreiferpfad Schritt für Schritt

  1. 1

    Identifiziere einen Codepfad, der nicht vertrauenswürdige Eingaben ohne Validierung verarbeitet.

  2. 2

    Erzeuge eine Payload, die das unsichere Verhalten auslöst — Injection, Traversal, Overflow oder Logik-Missbrauch.

  3. 3

    Liefere die Payload über einen normalen Request aus und beobachte die Reaktion der Anwendung.

  4. 4

    Iteriere, bis die Antwort Daten preisgibt, Angreifer-Code ausführt oder Berechtigungen eskaliert.

Verwundbares Codebeispiel

Vulnerable pseudo

MITRE hat kein Codebeispiel für diese CWE veröffentlicht. Das untenstehende Muster ist illustrativ — kanonische Referenzen findest du unter Ressourcen.

Verwundbar pseudo
// Example pattern — see MITRE for the canonical references.
function handleRequest(input) {
  // Untrusted input flows directly into the sensitive sink.
  return executeUnsafe(input);
}
Sicheres Codebeispiel

Secure pseudo

Sicher pseudo
// Validate, sanitize, or use a safe API before reaching the sink.
function handleRequest(input) {
  const safe = validateAndEscape(input);
  return executeWithGuards(safe);
}
What changed: the unsafe sink is replaced (or the input is validated/escaped) so the same payload no longer triggers the weakness.
Präventions-Checkliste

How to prevent CWE-58

  • System Configuration Disable Windows from supporting 8.3 filenames by editing the Windows registry. Preventing 8.3 filenames will not remove previously generated 8.3 filenames.
Erkennungssignale

How to detect CWE-58

SAST High

Führe statische Analyse (SAST) auf der Codebasis aus und suche im Datenfluss nach dem unsicheren Muster.

DAST Moderate

Führe dynamische Application-Security-Tests gegen den Live-Endpoint aus.

Runtime Moderate

Beobachte Runtime-Logs auf ungewöhnliche Exception-Traces, fehlerhafte Eingaben oder Versuche, Autorisierung zu umgehen.

Code review Moderate

Code Review: Markiere jeden neuen Code, der Eingaben von dieser Oberfläche ohne validierte Framework-Helper verarbeitet.

Plexicus Auto-Fix

Plexicus erkennt CWE-58 automatisch und öffnet in unter 60 Sekunden einen Fix-PR.

Codex Remedium scannt jeden Commit, identifiziert genau diese Schwachstelle und liefert einen reviewer-ready Pull Request mit dem Patch. Keine Tickets. Keine Hand-offs.

Häufig gestellte Fragen

Frequently asked questions

Was ist CWE-58?

This vulnerability occurs when an application's security controls successfully block access to a file's full name on Windows, but fail to protect the shorter 8.3 format version of the same filename, creating a bypassable loophole.

Wie gravierend ist CWE-58?

MITRE hat für diese Schwachstelle keine Exploit-Wahrscheinlichkeit veröffentlicht. Behandle sie als mittlere Auswirkung, bis dein Threat Model anderes belegt.

Welche Sprachen oder Plattformen sind von CWE-58 betroffen?

MITRE lists the following affected platforms: Windows.

Wie kann ich CWE-58 verhindern?

Disable Windows from supporting 8.3 filenames by editing the Windows registry. Preventing 8.3 filenames will not remove previously generated 8.3 filenames.

Wie erkennt und behebt Plexicus CWE-58?

Die SAST-Engine von Plexicus erkennt die Datenfluss-Signatur von CWE-58 bei jedem Commit. Bei einem Treffer öffnet unser Codex-Remedium-Agent einen Fix-PR mit korrigiertem Code, Tests und einer einzeiligen Zusammenfassung für den Reviewer.

Wo erfahre ich mehr über CWE-58?

MITRE veröffentlicht die kanonische Definition unter https://cwe.mitre.org/data/definitions/58.html. Für ergänzende Hinweise kannst du auch die OWASP- und NIST-Dokumentation heranziehen.

Verwandte Schwachstellen

Weaknesses related to CWE-58

CWE-41 Parent

Improper Resolution of Path Equivalence

This vulnerability occurs when an application fails to properly handle different text representations that refer to the same file or…

CWE-42 Sibling

Path Equivalence: 'filename.' (Trailing Dot)

This vulnerability occurs when a system accepts file or directory paths that end with a dot (like 'file.txt.' or 'folder.') without…

CWE-44 Sibling

Path Equivalence: 'file.name' (Internal Dot)

This vulnerability occurs when an application accepts file paths containing internal dots (like 'file.ordir') without properly checking…

CWE-46 Sibling

Path Equivalence: 'filename ' (Trailing Space)

This vulnerability occurs when an application processes file paths that end with a space character (like 'document.txt ') without properly…

CWE-47 Sibling

Path Equivalence: ' filename' (Leading Space)

This vulnerability occurs when an application accepts file or directory paths that begin with a space character (like ' filename'),…

CWE-48 Sibling

Path Equivalence: 'file name' (Internal Whitespace)

This vulnerability occurs when an application accepts file paths containing internal spaces (like 'file name') without proper validation.…

CWE-49 Sibling

Path Equivalence: 'filename/' (Trailing Slash)

This vulnerability occurs when an application accepts file or directory paths that end with a slash (e.g., 'documents/') without properly…

CWE-50 Sibling

Path Equivalence: '//multiple/leading/slash'

This vulnerability occurs when an application accepts file or directory paths containing multiple leading slashes (like…

CWE-51 Sibling

Path Equivalence: '/multiple//internal/slash'

This vulnerability occurs when an application accepts file or directory paths containing multiple consecutive forward slashes (e.g.,…

Bereit, wenn du es bist

Schluss mit dem Bezahlen pro Entwickler.
Schließ den Kreislauf.

Plexicus ist die KI-native ASPM, die scannt, filtert, fixt, pentestet und erklärt — autonom. Unbegrenzte Entwickler, unbegrenzte Repos, Fair-Use-KI-Aktionen. Echter kostenloser Tarif, €269/mo jährlich, wenn du bereit bist.