CVE Vulnerabilities

CVE-2026-27784

Integer Overflow or Wraparound

Published: Mar 24, 2026 | Modified: Mar 30, 2026
CVSS 3.x
5.5
MEDIUM
Source:
NVD
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
CVSS 2.x
RedHat/V2
RedHat/V3
7.5 IMPORTANT
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Ubuntu
MEDIUM
root.io logo minimus.io logo echo.ai logo

The 32-bit implementation of NGINX Open Source has a vulnerability in the ngx_http_mp4_module module, which might allow an attacker to over-read or over-write NGINX worker memory resulting in its termination, using a specially crafted MP4 file. The issue only affects 32-bit NGINX Open Source if it is built with the ngx_http_mp4_module module and the mp4 directive is used in the configuration file. Additionally, the attack is possible only if an attacker can trigger the processing of a specially crafted MP4 file with the ngx_http_mp4_module module.

Note: Software versions which have reached End of Technical Support (EoTS) are not evaluated.

Weakness

The product performs a calculation that can produce an integer overflow or wraparound when the logic assumes that the resulting value will always be larger than the original value. This occurs when an integer value is incremented to a value that is too large to store in the associated representation. When this occurs, the value may become a very small or negative number.

Affected Software

NameVendorStart VersionEnd Version
Nginx_open_sourceF51.1.19 (including)1.28.3 (excluding)
Nginx_open_sourceF51.29.0 (including)1.29.7 (excluding)
Red Hat Enterprise Linux 10RedHatnginx-2:1.26.3-2.el10_1.1*
Red Hat Enterprise Linux 10.0 Extended Update SupportRedHatnginx-2:1.26.3-1.el10_0.8*
Red Hat Enterprise Linux 8RedHatnginx:1.24-8100020260401080144.489197e6*
Red Hat Enterprise Linux 9RedHatnginx:1.24-9070020260331134728.9*
Red Hat Enterprise Linux 9RedHatnginx-2:1.20.1-24.el9_7.2*
Red Hat Enterprise Linux 9RedHatnginx:1.26-9070020260407080353.9*
Red Hat Enterprise Linux 9.0 Update Services for SAP SolutionsRedHatnginx-1:1.20.1-10.el9_0.3*
Red Hat Enterprise Linux 9.2 Update Services for SAP SolutionsRedHatnginx-1:1.20.1-14.el9_2.5*
Red Hat Enterprise Linux 9.4 Extended Update SupportRedHatnginx-1:1.20.1-16.el9_4.5*
Red Hat Enterprise Linux 9.4 Extended Update SupportRedHatnginx:1.24-9040020260504195322.9*
Red Hat Enterprise Linux 9.6 Extended Update SupportRedHatnginx-2:1.20.1-22.el9_6.5*
Red Hat Enterprise Linux 9.6 Extended Update SupportRedHatnginx:1.24-9060020260504194843.9*
Red Hat Enterprise Linux 9.6 Extended Update SupportRedHatnginx:1.26-9060020260504154614.9*
Red Hat Hardened ImagesRedHatnginx-main-1.30.0-1.hum1*
Red Hat Update Infrastructure 5RedHatrhui5/cds-rhel9:1776868774*
Red Hat Update Infrastructure 5RedHatrhui5/rhua-rhel9:1776868842*
NginxUbuntuesm-infra-legacy/trusty*
NginxUbuntuesm-infra-legacy/xenial*
NginxUbuntuesm-infra/bionic*
NginxUbuntuesm-infra/focal*
NginxUbuntuesm-infra/xenial*
NginxUbuntujammy*
NginxUbuntunoble*
NginxUbuntuquesting*
NginxUbuntuupstream*

Potential Mitigations

  • Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.
  • If possible, choose a language or compiler that performs automatic bounds checking.
  • Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482].
  • Use libraries or frameworks that make it easier to handle numbers without unexpected consequences.
  • Examples include safe integer handling packages such as SafeInt (C++) or IntegerLib (C or C++). [REF-106]
  • Perform input validation on any numeric input by ensuring that it is within the expected range. Enforce that the input meets both the minimum and maximum requirements for the expected range.
  • Use unsigned integers where possible. This makes it easier to perform validation for integer overflows. When signed integers are required, ensure that the range check includes minimum values as well as maximum values.
  • Understand the programming language’s underlying representation and how it interacts with numeric calculation (CWE-681). Pay close attention to byte size discrepancies, precision, signed/unsigned distinctions, truncation, conversion and casting between types, “not-a-number” calculations, and how the language handles numbers that are too large or too small for its underlying representation. [REF-7]
  • Also be careful to account for 32-bit, 64-bit, and other potential differences that may affect the numeric representation.

References