CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-31839

CVE-2026-31839: Striae Integrity Bypass in Digital Confirmation Workflow

Amit Schendel
Amit Schendel
Senior Security Researcher

Mar 12, 2026·4 min read·19 visits

Executive Summary (TL;DR)

A design flaw in Striae < 3.0.0 allows attackers to modify forensic ZIP packages without detection by recalculating file hashes in the unauthenticated manifest, breaking the chain of custody.

Striae versions prior to 3.0.0 suffer from a high-severity integrity bypass vulnerability in the digital confirmation workflow. The application relies on an unauthenticated hash-only validation model for exported forensic packages, allowing attackers to modify evidence and forge validation metadata without detection.

Vulnerability Overview

Striae versions prior to 3.0.0 contain an integrity validation bypass in the digital confirmation workflow. The application relies on a hash-only validation mechanism for exported forensic packages without utilizing cryptographic signatures or message authentication codes. This design flaw aligns with CWE-354: Improper Validation of Integrity Check Value.

The vulnerability allows an unauthenticated attacker to manipulate forensic evidence contained within exported ZIP archives. Because the validation metadata resides within the same trust boundary as the evidence files, the system cannot detect unauthorized modifications. This compromises the forensic chain of custody and permits the introduction of falsified data into the examiner's workflow.

The underlying weakness stems from trusting self-referential integrity checks. Without a mechanism to authenticate the origin and integrity of the manifest itself, the software provides false assurance of data authenticity.

Root Cause Analysis

The forensic export process generates a FORENSIC_MANIFEST.json file that is included in the root of the exported ZIP archive. This manifest contains SHA-256 hashes for the main case JSON data and a map of filenames to hashes for all associated images. It also includes a self-referential manifestHash representing the contents of the manifest itself.

During the import process, the application recalculates the hashes of the files present in the ZIP archive and compares them against the values in the manifest. The fundamental flaw is the absence of an external or secret-dependent root of trust. The verification mechanism assumes the manifest is authoritative simply because it is present in the archive.

Because the attacker controls the entire ZIP archive, they control both the data and the validation metadata. The application fails to authenticate the origin of the FORENSIC_MANIFEST.json file, treating any mathematically consistent manifest as legitimate regardless of who generated it.

Exploitation Methodology

Exploitation requires the attacker to intercept or obtain a legitimate Striae digital confirmation ZIP package. The attacker extracts the archive and modifies the underlying case data or image files to alter the forensic findings.

After altering the evidence, the attacker recalculates the SHA-256 hashes for the modified files. The attacker then updates the corresponding entries in the FORENSIC_MANIFEST.json file and computes a new manifestHash to match the updated manifest payload.

The attacker repacks the files into a new ZIP archive and delivers it to the target user. When the user imports the manipulated package, the Striae software reads the attacker-controlled manifest, validates the hashes against the attacker-modified files, and reports successful integrity verification. The user relies on the falsified evidence, completing the attack chain.

Impact Assessment

The primary impact of this vulnerability is a complete localized bypass of the forensic evidence integrity controls. An attacker successfully exploiting this flaw can seamlessly alter critical case data, including examiner names, confirmation timestamps, and comparative image evidence.

This manipulation directly undermines the chain of custody required for digital forensics. The application provides false assurance to the examiner by displaying a "Complete integrity verified" status for a tampered package. This allows falsified evidence to be admitted or relied upon in subsequent investigations or legal proceedings.

The CVSS v3.1 base score of 8.2 reflects the high severity of the integrity and confidentiality impacts. While the attack requires user interaction to import the malicious file, the lack of required privileges and the direct compromise of the application's core security function drive the high severity rating.

Code Analysis & Remediation

Version 3.0.0 addresses the vulnerability by implementing asymmetric digital signatures using RSASSA-PKCS1-v1_5-SHA-256. The export process now routes the manifest through a secure server-side worker (data-worker.ts) that signs a canonicalized version of the manifest using a private key (MANIFEST_SIGNING_PRIVATE_KEY).

The manifest structure was updated to version 2.0, appending a signature object that includes the algorithm, key identifier, timestamp, and a Base64-encoded signature. The import orchestrator (orchestrator.ts) and hash utility (hash-utility.tsx) were modified to enforce a strict verifyForensicManifestSignature step using the corresponding public key (MANIFEST_SIGNING_PUBLIC_KEY).

The application now operates on a fail-closed policy, rejecting any package lacking a valid signature or utilizing an unrecognized key identifier. New utilities (createManifestSigningPayload and normalizeImageHashes) guarantee deterministic JSON representation during both the signing and verification phases, preventing canonicalization bypasses.

Fix Analysis (2)

Technical Appendix

CVSS Score
8.2/ 10
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N

Affected Systems

Striae digital confirmation workflowStriae export/import orchestratorFORENSIC_MANIFEST.json parser

Affected Versions Detail

Product
Affected Versions
Fixed Version
striae
striae-org
>= 0.9.22-0, < 3.0.03.0.0
AttributeDetail
CWE IDCWE-354
CVSS Score8.2
Attack VectorLocal
ImpactHigh Integrity, High Confidentiality
Privileges RequiredNone
Exploit StatusProof of Concept

MITRE ATT&CK Mapping

T1565.001Data Manipulation: Stored Data
Impact
CWE-354
Improper Validation of Integrity Check Value

The application uses a checksum or hash to verify the integrity of data but does not properly ensure that the checksum itself is authentic.

Vulnerability Timeline

Striae v2.2.0 released (last known vulnerable minor version).
2026-03-07
Vulnerability identified and internal fix plan created. Fix commits implemented.
2026-03-09
Security release v3.0.0 tagged and published.
2026-03-10
CVE-2026-31839 and GHSA-mmf8-487q-p45m publicly disclosed.
2026-03-11

References & Sources

  • [1]GHSA-mmf8-487q-p45m Advisory
  • [2]Striae v3.0.0 Release Notes
  • [3]NVD Entry: CVE-2026-31839 Detail

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•1 day ago•CVE-2026-58197
8.8

CVE-2026-58197: Host Escape and Lateral Movement via Insecure Container Network Defaults in ToolHive

A high-severity access control vulnerability in ToolHive CLI before v0.30.1 and ToolHive Studio before v0.38.0 allows local containerized MCP servers to bypass network isolation. This enables malicious workloads to establish TCP/IP connections to administrative and control plane endpoints exposed on the host loopback interface.

Amit Schendel
Amit Schendel
7 views•8 min read
•1 day ago•CVE-2026-63405
5.9

CVE-2026-63405: Insufficient Verification of Data Authenticity in AnyCable Pusher REST API

AnyCable is a real-time communication server. Prior to version 1.6.15, its Pusher-compatible REST API suffered from an authentication bypass vulnerability because it failed to verify that the request body matched the signature-validated body_md5 parameter. This allows attackers to perform replay attacks with modified body contents.

Amit Schendel
Amit Schendel
9 views•5 min read
•1 day ago•CVE-2026-64847
6.8

CVE-2026-64847: Indefinite Denial of Service via Undrained Stderr in AnyIO Process Pool Workers

A denial-of-service vulnerability exists in AnyIO prior to version 4.14.2. Standard error streams of process-pool workers are connected to an operating system pipe that is never drained by the parent process. This allows a worker to fill the pipe buffer and deadlock indefinitely.

Amit Schendel
Amit Schendel
7 views•6 min read
•1 day ago•CVE-2026-63349
7.0

CVE-2026-63349: Privilege Dropping Bypass and Denial of Service in AnyIO Subprocess Module

CVE-2026-63349 is a critical privilege-dropping bypass vulnerability in the AnyIO asynchronous framework (versions 4.14.0 and 4.14.1) on POSIX platforms. Due to a variable assignment typo, supplementary groups specified by the developer are not correctly propagated to the execution backend, resulting in subprocesses retaining the parent process's elevated supplementary group permissions.

Alon Barad
Alon Barad
13 views•5 min read
•1 day ago•CVE-2026-63406
5.9

CVE-2026-63406: Information Disclosure via Insecure Telemetry and Hardcoded Credentials in AnyCable-Go

CVE-2026-63406 is an information disclosure vulnerability in AnyCable-go prior to version 1.6.15. The built-in telemetry client is enabled by default with a hardcoded public authentication token ('secret'). This client digests highly sensitive configuration parameters and command-line arguments, including JWT secrets and RPC secrets, into a stable SHA-256 fingerprint. This fingerprint is sent over public networks, exposing those administrative secrets to offline dictionary and brute-force attacks if intercepted.

Alon Barad
Alon Barad
7 views•5 min read
•1 day ago•CVE-2026-84992
6.1

CVE-2026-84992: Cross-Site Scripting (XSS) via Fenced Code Block Parsing in md-editor-v3

CVE-2026-84992 is a Cross-Site Scripting (XSS) vulnerability affecting md-editor-v3 before version 6.5.4. It occurs because the fenced-code block language parser directly interpolates unescaped language metadata into unquoted HTML attributes inside the custom rendering callback. This bypasses the built-in XSSPlugin which runs during the parsing phase, before rendering.

Amit Schendel
Amit Schendel
9 views•6 min read