CVE-2020-20335
https://notcve.org/view.php?id=CVE-2020-20335
Buffer Overflow vulnerability in Antirez Kilo before commit 7709a04ae8520c5b04d261616098cebf742f5a23 allows a remote attacker to cause a denial of service via the editorUpdateRow function in kilo.c. • https://github.com/antirez/kilo/issues/60 • CWE-190: Integer Overflow or Wraparound •
CVE-2023-28295 – Microsoft Publisher Remote Code Execution Vulnerability
https://notcve.org/view.php?id=CVE-2023-28295
Microsoft Publisher Remote Code Execution Vulnerability • https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-28295 • CWE-190: Integer Overflow or Wraparound •
CVE-2023-29349 – Microsoft ODBC and OLE DB Remote Code Execution Vulnerability
https://notcve.org/view.php?id=CVE-2023-29349
Microsoft ODBC and OLE DB Remote Code Execution Vulnerability Vulnerabilidad de ejecución de código remota en Microsoft ODBC y OLE DB • https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-29349 • CWE-191: Integer Underflow (Wrap or Wraparound) •
CVE-2023-35790
https://notcve.org/view.php?id=CVE-2023-35790
An integer underflow in patch decoding can lead to a denial of service, such as an infinite loop. • https://github.com/libjxl/libjxl/pull/2551 https://github.com/libjxl/libjxl/releases/tag/v0.8.2 • CWE-191: Integer Underflow (Wrap or Wraparound) •
CVE-2023-34454 – snappy-java's Integer Overflow vulnerability in compress leads to DoS
https://notcve.org/view.php?id=CVE-2023-34454
Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing an unrecoverable fatal error. The function `compress(char[] input)` in the file `Snappy.java` receives an array of characters and compresses it. It does so by multiplying the length by 2 and passing it to the rawCompress` function. Since the length is not tested, the multiplication by two can cause an integer overflow and become negative. The rawCompress function then uses the received length and passes it to the natively compiled maxCompressedLength function, using the returned value to allocate a byte array. Since the maxCompressedLength function treats the length as an unsigned integer, it doesn’t care that it is negative, and it returns a valid value, which is casted to a signed integer by the Java engine. ... This issue could allow an attacker to send malicious input to trigger an overflow error that crashes the program, resulting in a denial of service. • https://github.com/xerial/snappy-java/blob/05c39b2ca9b5b7b39611529cc302d3d796329611/src/main/java/org/xerial/snappy/Snappy.java#L169 https://github.com/xerial/snappy-java/blob/05c39b2ca9b5b7b39611529cc302d3d796329611/src/main/java/org/xerial/snappy/Snappy.java#L422 https://github.com/xerial/snappy-java/blob/master/src/main/java/org/xerial/snappy/Snappy.java https://github.com/xerial/snappy-java/commit/d0042551e4a3509a725038eb9b2ad1f683674d94 https://github.com/xerial/snappy-java/security/advisories/GHSA-fjpj-2g6w-x25r http • CWE-190: Integer Overflow or Wraparound •