Lucene search
+L

143762 matches found

RedHat Linux
RedHat Linux
added 2026/07/09 5:08 p.m.25 views

Important: Red Hat Security Advisory: firefox security update

An update for firefox is now available for Red Hat Enterprise Linux 9.6 Extended Update Support. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System CVSS base score, which gives a detailed severity rating, is available for...

9.6CVSS6AI score0.00493EPSS
SaveExploits2References30
OSV
OSV
added 2026/07/09 4:49 p.m.10 views

PYSEC-2026-3168 TensorFlow vulnerable to `CHECK` failure in tf.reshape via overflows

Impact The implementation of tf.reshape op in TensorFlow is vulnerable to a denial of service via CHECK-failure assertion failure caused by overflowing the number of elements in a tensor: python import tensorflow as tf tf.reshapetensor=1,shape=tf.constant0 for i in range255, dtype=tf.int64 This i...

5.9CVSS6.9AI score0.00423EPSS
SaveExploits0References7
OSV
OSV
added 2026/07/09 4:49 p.m.10 views

PYSEC-2026-3299 Core dump when loading TFLite models with quantization in TensorFlow

Impact Certain TFLite models that were created using TFLite model converter would crash when loaded in the TFLite interpreter. The culprit is that during quantization the scale of values could be greater than 1 but code was always assuming sub-unit scaling. Thus, since code was calling...

5.5CVSS6.2AI score0.00319EPSS
SaveExploits1References12
OSV
OSV
added 2026/07/09 4:49 p.m.7 views

PYSEC-2026-3269 TensorFlow vulnerable to `CHECK` fail in `Conv2DBackpropInput`

Impact When Conv2DBackpropInput receives empty outbackprop inputs e.g. 3, 1, 0, 1, the current CPU/GPU kernels CHECK fail one with dnnl, the other with cudnn. This can be used to trigger a denial of service attack. python import tensorflow as tf import numpy as np inputsizes = 3, 1, 1, 2 filter =...

5.9CVSS6.9AI score0.00423EPSS
SaveExploits0References7
OSV
OSV
added 2026/07/09 4:49 p.m.8 views

PYSEC-2026-3112 Undefined behavior when users supply invalid resource handles

Impact Multiple TensorFlow operations misbehave in eager mode when the resource handle provided to them is invalid: python import tensorflow as tf tf.rawops.QueueIsClosedV2handle= python import tensorflow as tf tf.summary.flushwriter= In graph mode, it would have been impossible to perform these...

5.5CVSS6.2AI score0.0032EPSS
SaveExploits1References11
OSV
OSV
added 2026/07/09 4:49 p.m.11 views

PYSEC-2026-3224 Missing validation results in undefined behavior in `QuantizedConv2D`

Impact The implementation of tf.rawops.QuantizedConv2D does not fully validate the input arguments: python import tensorflow as tf input = tf.constant1, shape=1, 2, 3, 3, dtype=tf.quint8 filter = tf.constant1, shape=1, 2, 3, 3, dtype=tf.quint8 bad args mininput = tf.constant, shape=0,...

5.5CVSS6.2AI score0.00335EPSS
SaveExploits1References11
OSV
OSV
added 2026/07/09 4:49 p.m.10 views

PYSEC-2026-3110 Missing validation causes denial of service via `Conv3DBackpropFilterV2`

Impact The implementation of tf.rawops.Conv3DBackpropFilterV2 does not fully validate the input arguments. This results in a CHECK-failure which can be used to trigger a denial of service attack: python import tensorflow as tf tf.rawops.Conv3DBackpropFilterV2 input=tf.constant.5053710941,...

5.5CVSS6.2AI score0.0032EPSS
SaveExploits1References11
OSV
OSV
added 2026/07/09 4:49 p.m.11 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.00789EPSS
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.00789EPSS
SaveExploits1References9
OSV
OSV
added 2026/07/09 4:49 p.m.8 views

PYSEC-2026-3232 Integer overflow in Tensorflow

Impact The implementation of Range suffers from integer overflows. These can trigger undefined behavior or, in some scenarios, extremely large allocations. Patches We have patched the issue in GitHub commit f0147751fd5d2ff23251149ebad9af9f03010732 merging 51733. The fix will be included in...

7.6CVSS7AI score0.00583EPSS
SaveExploits0References10
OSV
OSV
added 2026/07/09 4:49 p.m.9 views

PYSEC-2026-3240 Integer overflows in Tensorflow

Impact The implementations of SparseCwise ops are vulnerable to integer overflows. These can be used to trigger large allocations so, OOM based denial of service or CHECK-fails when building new TensorShape objects so, assert failures based denial of service: python import tensorflow as tf import...

7.1CVSS6.6AI score0.01106EPSS
SaveExploits1References11
OSV
OSV
added 2026/07/09 4:49 p.m.11 views

PYSEC-2026-3223 Undefined behavior in `SparseTensorSliceDataset`

Impact The implementation of SparseTensorSliceDataset has an undefined behavior: under certain condition it can be made to dereference a nullptr value: python import tensorflow as tf import numpy as np tf.rawops.SparseTensorSliceDataset indices=, values=, denseshape=1,1 The 3 input arguments...

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

PYSEC-2026-3113 Abort caused by allocating a vector that is too large in Tensorflow

Impact During shape inference, TensorFlow can allocate a large vector based on a value from a tensor controlled by the user: cc const auto numdims = Valueshapedim; std::vector dims; dims.reservenumdims; Patches We have patched the issue in GitHub commit 1361fb7e29449629e1df94d44e0427ebec8c83c7. T...

6.5CVSS6.7AI score0.00828EPSS
SaveExploits1References9
OSV
OSV
added 2026/07/09 4:16 p.m.8 views

DEBIAN-CVE-2026-23556

When oxenstored is tearing a domain down, the node data is cleaned up but the usage counts are leaked. When the domain ID is eventually reused, the new domain can create fewer nodes before beeing deemed to be over quota...

9.4CVSS6.1AI score0.00137EPSS
SaveExploits0References1
Circl
Circl
added 2026/07/09 4:11 p.m.19 views

GHSA-52VM-MXX8-F227

creationtimestamp| type| source ---|---|--- 2026-07-09 16:11:48+00:00| seen| https://gist.github.com/alon710/de8daa287a86509961bb72f2223b1bc8...

5.9AI score
SaveExploits0References1
Circl
Circl
added 2026/07/09 3:42 p.m.13 views

GHSA-C43V-4CR8-6MVP

creationtimestamp| type| source ---|---|--- 2026-07-09 15:42:12+00:00| seen| https://gist.github.com/alon710/ffb181b33bedea772189a8193fac5697...

5.9AI score
SaveExploits0References1
Circl
Circl
added 2026/07/09 3:11 p.m.20 views

GHSA-86VW-X4WW-X467

creationtimestamp| type| source ---|---|--- 2026-07-09 15:11:49+00:00| seen| https://gist.github.com/alon710/305f4c5d688e5f2ef3648a51ae29f792...

5.9AI score
SaveExploits0References1
RedHat Linux
RedHat Linux
added 2026/07/09 2:49 p.m.14 views

Important: Red Hat Security Advisory: rh-podman-desktop security advisory update

A security advisory update for rh-podman-desktop is now available for Red Hat Enterprise Linux 10. Red Hat build of Podman Desktop is a graphical tool for managing containers using Podman. It allows users to run, manage, and configure containers and container images using a desktop GUI. Most...

8.8CVSS7.6AI score0.00634EPSS
SaveExploits0References2
RedHat Linux
RedHat Linux
added 2026/07/09 2:40 p.m.17 views

Important: Red Hat Security Advisory: Red Hat Hardened Images RPMs bug fix and enhancement update

An update for Red Hat Hardened Images RPMs is now available. This update includes the following RPMs: openssh: openssh-10.4p1-1.hum1 aarch64, x8664 openssh-askpass-10.4p1-1.hum1 aarch64, x8664 openssh-clients-10.4p1-1.hum1 aarch64, x8664 openssh-keycat-10.4p1-1.hum1 aarch64, x8664...

9.4CVSS5.9AI score0.00441EPSS
SaveExploits0References10
Circl
Circl
added 2026/07/09 2:35 p.m.13 views

CVE-2026-49476

creationtimestamp| type| source ---|---|--- 2026-07-09 14:35:15+00:00| published-proof-of-concept| https://github.com/facelessuser/soupsieve/security/advisories/GHSA-2wc2-fm75-p42x 2026-07-27 03:20:14+00:00| seen| https://bsky.app/profile/kriptabiz.bsky.social/post/3mrlwtpp33m2o...

7.5CVSS5.8AI score0.00522EPSS
SaveExploits1References2
Rows per page
Query Builder