Christian Studer

#1939of 56,333
126.9Total CVSS
Vulnerabilities · 20
Low
1
Medium
13
High
6
PT-2026-79354
6.3
2026-08-21
Misp-Stix · Misp-Stix · CVE-2026-77761
**Name of the Vulnerable Software and Affected Versions** misp-stix (affected versions not specified) **Description** A parser state isolation issue exists where data from a previously processed STIX document may be retained and incorporated into a MISP event generated from a subsequent document if the same parser instance is reused. This occurs because several STIX 1 and STIX 2 parser components maintain per-document state that is not fully cleared between conversions. In the STIX 2 parser, galaxy and galaxy-cluster information can survive a parser reset. For STIX 1 parsers, retained data may include galaxies, references, passive DNS bookkeeping, package titles, dates, and timestamps. This issue primarily affects applications that use the misp-stix API directly and reuse parser instances across independent STIX documents. An attacker could potentially contaminate subsequent MISP events, compromising the integrity of threat intelligence through incorrect associations or misleading contextual information. In environments with different access controls for consecutive documents, this could lead to limited information disclosure. Exploitation requires the consuming application to reuse the same parser instance and depends on the order of processed documents. **Recommendations** At the moment, there is no information about a newer version that contains a fix for this vulnerability. As a temporary mitigation, ensure that a new parser instance is instantiated for each STIX document instead of reusing a single instance across multiple documents.
PT-2026-69847
5.1
2026-08-10
Unknown · Cti-Transmute · CVE-2026-72751
**Name of the Vulnerable Software and Affected Versions** CTI-Transmute (affected versions not specified) **Description** A stored cross-site scripting (XSS) issue exists in the conversion graph used to visualize MISP and STIX content. Attacker-controlled values from converted CTI data are passed to HTML-parsing sinks in the graph user interface without sufficient neutralization. Specifically, node labels, node sublabels, edge labels, node properties, edge properties, and node types can contain crafted HTML or JavaScript. The Pivotick graph library renders these values through HTML-parsing operations, allowing malicious elements with event handlers to be interpreted as markup. Additionally, the Open raw JSON functionality uses `document.write()` with an interpolated HTML string, enabling crafted JSON to inject executable markup. Further vectors exist in the graph properties panel where the `tryResolveHTMLElement` function processes string values using `template.innerHTML`, leading to execution when a graph node is hovered over or selected. **Recommendations** At the moment, there is no information about a newer version that contains a fix for this vulnerability. As a mitigation measure, implement the following changes: - HTML-escape node labels, node sublabels, and edge labels before passing them to Pivotick. - Restrict graph node type values to a safe identifier character set. - Wrap node and edge property values in DOM elements populated through `textContent` to prevent them from being treated as HTML. - Replace the interpolated `document.write()` in the raw-JSON popup with DOM construction and `textContent`.