Matrix Javascript SDK is the Matrix Client-Server SDK for JavaScript. Starting with version 17.1.0-rc.1, improperly formed beacon events can disrupt or impede the matrix-js-sdk from functioning properly, potentially impacting the consumers ability to process data safely. Note that the matrix-js-sdk can appear to be operating normally but be excluding or corrupting runtime data presented to the consumer. This is patched in matrix-js-sdk v19.7.0. Redacting applicable events, waiting for the sync processor to store data, and restarting the client are possible workarounds. Alternatively, redacting the applicable events and clearing all storage will fix the further perceived issues. Downgrading to an unaffected version, noting that such a version may be subject to other vulnerabilities, will additionally resolve the issue.
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Javascript_sdk | Matrix | 17.1.0 (including) | 19.7.0 (excluding) |
Javascript_sdk | Matrix | 17.1.0-rc1 (including) | 17.1.0-rc1 (including) |
Red Hat Enterprise Linux 7 | RedHat | thunderbird-0:102.4.0-1.el7_9 | * |
Red Hat Enterprise Linux 8 | RedHat | thunderbird-0:102.4.0-1.el8_6 | * |
Red Hat Enterprise Linux 8.1 Update Services for SAP Solutions | RedHat | thunderbird-0:102.4.0-1.el8_1 | * |
Red Hat Enterprise Linux 8.2 Extended Update Support | RedHat | thunderbird-0:102.4.0-1.el8_2 | * |
Red Hat Enterprise Linux 8.4 Extended Update Support | RedHat | thunderbird-0:102.4.0-1.el8_4 | * |
Red Hat Enterprise Linux 9 | RedHat | thunderbird-0:102.4.0-1.el9_0 | * |
Node-matrix-js-sdk | Ubuntu | focal | * |
Node-matrix-js-sdk | Ubuntu | kinetic | * |
Node-matrix-js-sdk | Ubuntu | lunar | * |
Node-matrix-js-sdk | Ubuntu | mantic | * |
Node-matrix-js-sdk | Ubuntu | oracular | * |
Node-matrix-js-sdk | Ubuntu | trusty | * |
Node-matrix-js-sdk | Ubuntu | xenial | * |
Thunderbird | Ubuntu | bionic | * |
Thunderbird | Ubuntu | focal | * |
Thunderbird | Ubuntu | jammy | * |
Thunderbird | Ubuntu | kinetic | * |
Thunderbird | Ubuntu | trusty | * |
Thunderbird | Ubuntu | xenial | * |
Input validation is a frequently-used technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components. Input can consist of:
Data can be simple or structured. Structured data can be composed of many nested layers, composed of combinations of metadata and raw data, with other simple or structured data. Many properties of raw data or metadata may need to be validated upon entry into the code, such as:
Implied or derived properties of data must often be calculated or inferred by the code itself. Errors in deriving properties may be considered a contributing factor to improper input validation.