Lucene search
+L

3000 matches found

Positive Technologies
Positive Technologies
added 2026/07/19 12:00 a.m.17 views

PT-2026-61248

Name of the Vulnerable Software and Affected Versions Linux kernel affected versions not specified Description A division by zero occurs in the kernel when a user writes a zero fractional part to the sampling frequency sysfs attribute. This happens within the write raw function of the scd30...

5.2AI score0.00211EPSS
SaveExploits0
NVD
NVD
added 2026/07/16 9:17 p.m.19 views

CVE-2026-61378

A divide-by-zero vulnerability in the Productivity Suite allows a local attacker to cause a division by zero leading to a system crash...

6.8CVSS0.0016EPSS
SaveExploits0References3
OSV
OSV
added 2026/07/15 1:18 p.m.6 views

SUSE-SU-2026:3053-1 Security update for ImageMagick

This update for ImageMagick fixes the following issues - CVE-2026-53466: integer overflow in the XCF decoder can result in an out-of-bounds read when a crafted image is read bsc1270073. - CVE-2026-53467: allocated memory left unchanged in the MNG decoder can lead to a heap information disclosure...

9.2CVSS6.3AI score0.00884EPSS
SaveExploits1References32
Tenable Nessus
Tenable Nessus
added 2026/07/14 12:00 a.m.5 views

openSUSE 16: ImageMagick / ImageMagick-config-7-SUSE / etc (openSUSE-SU-2026:21291-1)

The remote openSUSE 16 host has packages installed that are affected by multiple vulnerabilities as referenced in the openSUSE-SU-2026:21291-1 advisory. This update for ImageMagick fixes the following issues - CVE-2026-53466: integer overflow in the XCF decoder can result in an out-of-bounds read...

9.2CVSS8.4AI score0.00884EPSS
SaveExploits1References31
OSV
OSV
added 2026/07/13 2:19 p.m.7 views

PYSEC-2026-3228 TensorFlow vulnerable to floating point exception in `Conv2D`

Impact If Conv2D is given empty input and the filter and padding sizes are valid, the output is all-zeros. This causes division-by-zero floating point exceptions that can be used to trigger a denial of service attack. python import tensorflow as tf import numpy as np with tf.device"CPU": also can...

5.9CVSS6.9AI score0.0042EPSS
SaveExploits0References7
OSV
OSV
added 2026/07/10 8:49 a.m.8 views

SUSE-SU-2026:22620-1 Security update for ImageMagick

This update for ImageMagick fixes the following issues - CVE-2026-53466: integer overflow in the XCF decoder can result in an out-of-bounds read when a crafted image is read bsc1270073. - CVE-2026-53467: allocated memory left unchanged in the MNG decoder can lead to a heap information disclosure...

9.2CVSS5.9AI score0.00884EPSS
SaveExploits1References22
BDU FSTEC
BDU FSTEC
added 2026/07/10 12:00 a.m.11 views

The vulnerability of the _dpk_pas_read() function in the drivers/net/wireless/realtek/rtw89/rtw8852a_rfk.c driver for the Realtek wireless connection driver in the Linux operating system allows a hacker to cause a service failure.

The vulnerability of the dpkpasread function in the drivers/net/wireless/realtek/rtw89/rtw8852arfk.c driver for the Realtek wireless adapter in the Linux operating system is related to insufficient validation of input data during division by zero. Exploiting this vulnerability could allow an...

5.5CVSS6.7AI score0.00208EPSS
SaveExploits0References10Affected Software2
OSV
OSV
added 2026/07/09 4:49 p.m.10 views

PYSEC-2026-3134 Division by zero in Tensorflow

Impact The implementation of FractionalMaxPool can be made to crash a TensorFlow process via a division by 0: python import tensorflow as tf import numpy as np tf.rawops.FractionalMaxPool value=tf.constantvalue=1, 4, 2, 3, dtype=tf.int64, poolingratio=1.0, 1.44, 1.73, 1.0, pseudorandom=False,...

7.1CVSS6.6AI score0.00783EPSS
SaveExploits1References9
OSV
OSV
added 2026/07/09 4:49 p.m.8 views

PYSEC-2026-3242 Division by zero in Tensorflow

Impact The estimator for the cost of some convolution operations can be made to execute a division by 0: python import tensorflow as tf @tf.function def test: y=tf.rawops.AvgPoolGrad originputshape=1,1,1,1, grad=1.0,1.0,1.0,2.0,2.0,2.0,3.0,3.0,3.0, ksize=1,1,1,1, strides=1,1,1,0, padding='VALID',...

6.8CVSS6.7AI score0.00783EPSS
SaveExploits1References9
OSV
OSV
added 2026/07/09 4:49 p.m.8 views

PYSEC-2026-3090 Overflow and uncaught divide by zero in Tensorflow

Impact The implementation of UnravelIndex is vulnerable to a division by zero caused by an integer overflow bug: python import tensorflow as tf tf.rawops.UnravelIndexindices=-0x100000,dims=0x100000,0x100000 Patches We have patched the issue in GitHub commit 58b34c6c8250983948b5a781b426f6aa01fd47a...

7.1CVSS6.7AI score0.00783EPSS
SaveExploits1References9
OSV
OSV
added 2026/07/09 4:49 p.m.6 views

PYSEC-2026-3095 Division by zero in TFLite

Impact An attacker can craft a TFLite model that would trigger a division by zero in the implementation of depthwise convolutions. The parameters of the convolution can be user controlled and are also used within a division operation to determine the size of the padding that needs to be added...

7.1CVSS6.6AI score0.00821EPSS
SaveExploits1References9
OSV
OSV
added 2026/07/09 4:49 p.m.8 views

PYSEC-2026-3188 Division by zero in TFLite

Impact An attacker can craft a TFLite model that would trigger a division by zero in BiasAndClamp implementation: cc inline void BiasAndClampfloat clampmin, float clampmax, int biassize, const float biasdata, int arraysize, float arraydata // ... TFLITEDCHECKEQarraysize % biassize, 0; // ... Ther...

7.1CVSS6.6AI score0.00757EPSS
SaveExploits1References9
OSV
OSV
added 2026/07/07 10:17 a.m.15 views

PYSEC-2026-1029 TensorFlow vulnerable to floating point exception in `Conv2D`

Impact If Conv2D is given empty input and the filter and padding sizes are valid, the output is all-zeros. This causes division-by-zero floating point exceptions that can be used to trigger a denial of service attack. python import tensorflow as tf import numpy as np with tf.device"CPU": also can...

5.9CVSS7AI score0.0042EPSS
SaveExploits0References7
SUSE CVE
SUSE CVE
added 2026/07/03 3:02 a.m.12 views

SUSE CVE-2026-56363

ImageMagick before 7.1.2-22 contains a division by zero vulnerability in binomial kernel processing that allows attackers to cause denial of service. An attacker can supply a large binomial kernel value causing integer overflow, resulting in division by zero and application crash...

3.3CVSS6AI score0.0015EPSS
SaveExploits0References8
EUVD
EUVD
added 2026/07/02 12:31 a.m.16 views

EUVD-2026-41218

A division-by-zero vulnerability in the CStreamSwitcherOutputPin::DecideBufferSize function of Aleksoid1978 MPC-BE before commit 4341cb3 allows attackers to cause a Denial of Service DoS via a crafted MP4 file...

5.5CVSS5.8AI score0.00148EPSS
SaveExploits0References2
BDU FSTEC
BDU FSTEC
added 2026/07/02 12:00 a.m.11 views

The vulnerability of the `get_pixel_clk_frequency_100hz()` function in the `drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c` driver, which supports the Direct Rendering Infrastructure (DRI) of AMD video cards for Linux operating systems. This vulnerability allows a attacker to cause a system failure.

The vulnerability of the getpixelclkfrequency100hz function in the drivers/gpu/drm/amd/display/dc/dce/dceclocksource.c driver, which supports Direct Rendering Infrastructure DRI in Linux kernel, is related to the lack of checks for division by zero. Exploiting this vulnerability could allow an...

5.5CVSS6.5AI score0.00263EPSS
SaveExploits0References12Affected Software2
NVD
NVD
added 2026/07/01 10:16 p.m.14 views

CVE-2026-36911

A division-by-zero vulnerability in the CStreamSwitcherOutputPin::DecideBufferSize function of Aleksoid1978 MPC-BE before commit 4341cb3 allows attackers to cause a Denial of Service DoS via a crafted MP4 file...

5.5CVSS0.00148EPSS
SaveExploits0References1
EUVD
EUVD
added 2026/07/01 12:34 a.m.18 views

EUVD-2026-40446

ImageMagick before 7.1.2-22 contains a division by zero vulnerability in binomial kernel processing that allows attackers to cause denial of service. An attacker can supply a large binomial kernel value causing integer overflow, resulting in division by zero and application crash...

4.8CVSS5.8AI score0.0015EPSS
SaveExploits0References3
CVE
CVE
added 2026/07/01 12:00 a.m.30 views

CVE-2026-36911

Summary of CVE-2026-36911 (MPC-BE) : A division-by-zero vulnerability exists in the file parsing/processing path: the function CStreamSwitcherOutputPin::DecideBufferSize in MPC-BE (before commit 4341cb3). This can be triggered by a crafted MP4 file, leading to a Denial of Service . Affected softw...

5.5CVSS5.8AI score0.00148EPSS
SaveExploits0References1
Tenable Nessus
Tenable Nessus
added 2026/07/01 12:00 a.m.11 views

Linux Distros Unpatched Vulnerability : CVE-2026-56363

The Linux/Unix host has one or more packages installed that are impacted by a vulnerability without a vendor supplied patch available. - ImageMagick before 7.1.2-22 contains a division by zero vulnerability in binomial kernel processing that allows attackers to cause denial of service. An attacke...

4.8CVSS5.4AI score0.0015EPSS
SaveExploits0References2
Rows per page
Query Builder