Falhas do tipo CWE-190

1.666 resultados

Estouro ou Envolvimento de Inteiro

Ocorre quando uma operação aritmética produz um valor que excede o limite máximo (ou mínimo) que o tipo de dado inteiro pode armazenar, causando o valor envolver-se para o lado oposto ou comportamento inesperado. Isso permite que atacantes contornem validações, aloquem memória inadequada, ou causem travamentos ao explorar essa descontinuidade.

Exemplo

Um servidor de upload limita arquivos a 2 GB verificando se size < 2147483648 (INT_MAX). Um atacante envia size=2147483648, que em inteiro de 32 bits assinado vira -2147483648. A validação passa, mas durante a alocação de buffer o sistema trata como valor negativo ou inesperado, causando falha ou bypass de proteção.

Como mitigar

Use tipos inteiros sem sinal (unsigned) ou de maior capacidade (64 bits) quando apropriado; valide entradas contra limites explícitos *antes* de operações aritméticas; utilize funções de verificação de overflow fornecidas pela linguagem ou biblioteca (ex: __builtin_add_overflow em C, SafeInt em .NET); evite conversões implícitas entre tipos.

CVE-2024-3757LOWArkcompiler runtime has an integer overflow vulnerabilityEPSS 0.2%CVE-2021-29601MEDIUMInteger overflow in TFLite concatentationEPSS 0.2%CVE-2026-52491HIGHAn issue in libtiff 85f2ac8e0b01cb7db2bbecf4a3b891bdbef67938 allows an attacker to execute arbitrary code via the libtiff/tools/thumbnail.c:EPSS 0.2%CVE-2026-20446MEDIUMIn sec boot, there is a possible out of bounds write due to an integer overflow. This could lead to local denial of service, if an attacker EPSS 0.2%CVE-2026-31641HIGHrxrpc: Fix RxGK token loading to check boundsEPSS 0.2%CVE-2022-49748MEDIUMperf/x86/amd: fix potential integer overflow on shift of a intEPSS 0.2%CVE-2022-49749MEDIUMi2c: designware: use casting of u64 in clock multiplication to avoid overflowEPSS 0.2%CVE-2024-50177MEDIUMdrm/amd/display: fix a UBSAN warning in DML2.1EPSS 0.2%CVE-2021-29523LOWCHECK-fail in AddManySparseToTensorsMapEPSS 0.2%CVE-2026-14786MEDIUMradareorg radare2 str.c r_str_word_get0set integer overflowEPSS 0.2%CVE-2026-14758MEDIUMradareorg radare2 hexpairs cmd_anal.inc.c cmd_anal_opcode integer overflowEPSS 0.2%CVE-2021-29584LOWCHECK-fail due to integer overflowEPSS 0.2%CVE-2026-14761MEDIUMradareorg radare2 str.c r_str_append integer overflowEPSS 0.2%CVE-2026-52492HIGHAn integer overflow in the libtiff rgb2ycbcr utility's cvtRaster() function when computing strip buffer sizes can result in an undersized heEPSS 0.2%CVE-2024-44198MEDIUMAn integer overflow was addressed through improved input validation. This issue is fixed in iOS 18 and iPadOS 18, macOS Sequoia 15, tvOS 18,EPSS 0.2%CVE-2026-3284MEDIUMlibvips extract.c vips_extract_area_build integer overflowEPSS 0.2%CVE-2026-21353HIGHDNG SDK | Integer Overflow or Wraparound (CWE-190)EPSS 0.2%CVE-2025-11463HIGHAshlar-Vellum Cobalt XE File Parsing Integer Overflow Remote Code Execution VulnerabilityEPSS 0.2%CVE-2026-52972HIGHcrypto: af_alg - Cap AEAD AD length to 0x80000000EPSS 0.2%CVE-2024-52557MEDIUMdrm: zynqmp_dp: Fix integer overflow in zynqmp_dp_rate_get()EPSS 0.2%