This CVE is a local out-of-bounds read in Microsoft Office's document parsing layer. The attack vector is straightforward: a victim opens a crafted file, and Office reads memory outside the document buffer, exposing data that should have been inaccessible. No code execution is required—just file open. That matters because it lowers the attacker门槛 significantly. They don't need phishing with credential theft; they need one document opened. The CVSS 5.5 is technically accurate for the disclosure event itself, but it misrepresents the actual risk. An OOB read in the parsing path isn't the terminal impact—it reconnoiters. If this occurs before heap hardening, ASLR entropy establishment, or credential clearing activates (all of which happen at different points in Office's startup sequence), it can fingerprint memory layout, expose loaded DLL versions, or surface fragments of previously-processed data. This transforms the vulnerability from an information disclosure into a reconnaissance enabler for subsequent, higher-severity attacks. Treat the CVSS score as a floor, not a ceiling. The more important question isn't the severity number—it's why this class of bug persists. Microsoft has been patching OOB reads in Office parsers for over two decades. If each instance were an isolated procedural miss, decades of SDL investment should have eliminated this pattern. The fact that it keeps reproducing suggests the parsing architecture creates structural pressure points: complex state, performance-sensitive code paths, and document content influencing pointer arithmetic in ways that make bounds handling perpetually error-prone. What to do: patch immediately. But also treat this as a signal to audit your Office exposure. If you process untrusted documents at scale—particularly in high-value target environments—consider whether those documents are being opened in isolated sandboxed processes before user authentication, or whether the parsing occurs in the main Office session where credential handling and memory state are more exposed. The difference in blast radius is substantial.