Lucene search
+L

132449 matches found

OSV
OSV
added 2026/07/07 11:45 a.m.10 views

PYSEC-2026-1292 dbt allows Binding to an Unrestricted IP Address via socketsocket

Summary Binding to INADDRANY 0.0.0.0 or IN6ADDRANY :: exposes an application on all network interfaces, increasing the risk of unauthorized access. While doing some static analysis and code inspection, I found the following code binding a socket to INADDRANY by passing "" as the address. This...

5.3CVSS5.8AI score0.0071EPSS
SaveExploits0References15
OSV
OSV
added 2026/07/07 11:45 a.m.10 views

PYSEC-2026-1251 Potential log injection in reset user endpoint in CKAN

A user endpoint didn't perform filtering on an incoming parameter, which was added directly to the application log. This could lead to an attacker injecting false log entries or corrupt the log file format. Patches This has been fixed in the CKAN 2.9.11 and 2.10.4 versions Workarounds Override th...

4.3CVSS5.9AI score0.00434EPSS
SaveExploits0References9
OSV
OSV
added 2026/07/07 11:45 a.m.9 views

PYSEC-2026-1595 m2crypto Bleichenbacher timing attack - incomplete fix for CVE-2020-25657

A flaw was found in m2crypto. This issue may allow a remote attacker to decrypt captured messages in TLS servers that use RSA key exchanges, which may lead to exposure of confidential or sensitive data...

5.9CVSS7.1AI score0.01124EPSS
SaveExploits0References7
OSV
OSV
added 2026/07/07 11:45 a.m.8 views

PYSEC-2026-1840 Pyramid static view path traversal up one directory

Impact This impacts users of Python 3.11 that are using a Pyramid static view with a full filesystem path and have a index.html file that is located exactly one directory above the location of the static view's file system path. No further path traversal exists, and the only file that could be...

5.3CVSS6AI score0.00632EPSS
SaveExploits0References10
OSV
OSV
added 2026/07/07 11:45 a.m.9 views

PYSEC-2026-1912 Privilege escalation via ApiTokensEndpoint

Impact An attacker with access to a token with few or no scopes can query /api/0/api-tokens/ for a list of all tokens created by a user, including tokens with greater scopes, and use those tokens in other requests. There is no evidence that the issue was exploited on https://sentry.io. For...

8.1CVSS7.2AI score0.01056EPSS
SaveExploits1References9
PyPA
PyPA
added 2026/07/07 11:45 a.m.12 views

PyPDF2 vulnerable to possible Infinite Loop when reading malformed objects

ImpactAn attacker who uses this vulnerability can craft a PDF which leads to an infinite loop.This infinite loop blocks the current process and can utilize a single core of the CPU by 100%. It does not affect memory usage. That is, for example, the case if the user extracted metadata from such a...

6.5CVSS6.6AI score0.00573EPSS
SaveExploits1References8Affected Software1
PyPA
PyPA
added 2026/07/07 11:45 a.m.23 views

pypdf and PyPDF2 possible Infinite Loop when a comment isn't followed by a character

ImpactAn attacker who uses this vulnerability can craft a PDF which leads to an infinite loop if parsecontentstream is executed. This infinite loop blocks the current process and can utilize a single core of the CPU by 100%. It does not affect memory usage. That is, for example, the case if the...

6.2CVSS6.2AI score0.00352EPSS
SaveExploits1References9Affected Software1
RedHat Linux
RedHat Linux
added 2026/07/07 11:25 a.m.26 views

Important: Red Hat Security Advisory: python3.14-pip security update

An update for python3.14-pip is now available for Red Hat Enterprise Linux 10. 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 each vulnerabilit...

8CVSS7.3AI score0.0032EPSS
SaveExploits0References2
PyPA
PyPA
added 2026/07/07 10:17 a.m.18 views

Invalid char to bool conversion when printing a tensor

ImpactWhen printing a tensor, we get it's data as a const char array since that's the underlying storage and then we typecast it to the element type. However, conversions from char to bool are undefined if the char is not 0 or 1, so sanitizers/fuzzers will crash. PatchesWe have patched the issue ...

7.5CVSS7.1AI score0.00389EPSS
SaveExploits0References7Affected Software1
OSV
OSV
added 2026/07/07 10:17 a.m.11 views

PYSEC-2026-1001 `CHECK` fail in `BCast` overflow

Impact If BCast::ToShape is given input larger than an int32, it will crash, despite being supposed to handle up to an int64. An example can be seen in tf.experimental.numpy.outer by passing in large input to the input b. python import tensorflow as tf value = tf.constantshape=2, 1024, 1024, 1024...

4.8CVSS5.9AI score0.00439EPSS
SaveExploits1References7
OSV
OSV
added 2026/07/07 10:17 a.m.10 views

PYSEC-2026-1013 Seg fault in `ndarray_tensor_bridge` due to zero and large inputs

Impact If a numpy array is created with a shape such that one element is zero and the others sum to a large number, an error will be raised. E.g. the following raises an error: python np.ones0, 231, 231 An example of a proof of concept: python import numpy as np import tensorflow as tf inputval =...

4.8CVSS5.9AI score0.0033EPSS
SaveExploits1References6
OSV
OSV
added 2026/07/07 10:17 a.m.9 views

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

Impact The implementation of Conv2DBackpropInput requires inputsizes to be 4-dimensional. Otherwise, it gives a CHECK failure which can be used to trigger a denial of service attack: python import tensorflow as tf strides = 1, 1, 1, 1 padding = "SAME" usecudnnongpu = True explicitpaddings =...

5.9CVSS5.9AI score0.00398EPSS
SaveExploits0References7
OSV
OSV
added 2026/07/07 10:17 a.m.8 views

PYSEC-2026-1005 TensorFlow vulnerable to `CHECK` failures in `UnbatchGradOp`

Impact The UnbatchGradOp function takes an argument id that is assumed to be a scalar. A nonscalar id can trigger a CHECK failure and crash the program. python import numpy as np import tensorflow as tf id is not scalar tf.rawops.UnbatchGradoriginalinput= tf.constant1,batchindex=tf.constant0,0,0 ...

5.9CVSS5.9AI score0.00579EPSS
SaveExploits0References8
OSV
OSV
added 2026/07/07 10:17 a.m.12 views

PYSEC-2026-1022 TensorFlow vulnerable to `CHECK` fail in `tf.random.gamma`

Impact When tf.random.gamma receives large input shape and rates, it gives a CHECK fail that can trigger a denial of service attack. python import tensorflow as tf arg0=tf.random.uniformshape=4,, dtype=tf.int32, maxval=65536 arg1=tf.random.uniformshape=4, 4, dtype=tf.float64, maxval=None...

5.9CVSS5.9AI score0.0042EPSS
SaveExploits0References7
PyPA
PyPA
added 2026/07/07 10:17 a.m.11 views

TensorFlow vulnerable to `CHECK` fail in `DenseBincount`

ImpactDenseBincount assumes its input tensor weights to either have the same shape as its input tensor input or to be length-0. A different weights shape will trigger a CHECK fail that can be used to trigger a denial of service attack.pythonimport tensorflow as tfbinaryoutput = Trueinput =...

7.5CVSS7AI score0.00411EPSS
SaveExploits0References7Affected Software1
OSV
OSV
added 2026/07/07 10:14 a.m.12 views

SUSE-SU-2026:22557-1 Security update for haproxy

This update for haproxy fixes the following issues - Update to version 3.2.21+git0.dbe43be37 - CVE-2026-55203: integer overflow vulnerability in the fcgiconn structure's drl field that allows buffer misparse as new FCGI record headers bsc1268557. - CVE-2026-55204: null pointer dereference...

9.1CVSS6.2AI score0.00484EPSS
SaveExploits0References5
OSV
OSV
added 2026/07/07 10:9 a.m.9 views

RHSA-2026:35892 Red Hat Security Advisory: nodejs:22 security, bug fix, and enhancement update

Bulletin has no description...

8.1CVSS5.9AI score0.03711EPSS
SaveExploits1References66
GithubExploit
GithubExploit
added 2026/07/07 9:52 a.m.104 views

Exploit for CVE-2026-53359

Januscape Hotfix — CVE-2026-53359 简体中文 Ze...

6.5AI score0.00908EPSS
SaveExploits5
RedHat Linux
RedHat Linux
added 2026/07/07 9:26 a.m.130 views

Important: Red Hat Security Advisory: OpenShift Container Platform 4.22.4 bug fix and security update

Red Hat OpenShift Container Platform release 4.22.4 is now available with updates to packages and images that fix several bugs and add enhancements. This release includes a security update for Red Hat OpenShift Container Platform 4.22. Red Hat Product Security has rated this update as having a...

9.1CVSS6AI score0.01557EPSS
SaveExploits2References6
RedHat Linux
RedHat Linux
added 2026/07/07 6:33 a.m.11 views

firefox: thunderbird: Memory safety bug fixed in Thunderbird ESR 140.12

A flaw was found in Firefox and Thunderbird. The Mozilla Foundation's Security Advisory describes the following issue: Memory safety bug fixed in Thunderbird ESR 140.12...

7.5CVSS5.9AI score0.00252EPSS
SaveExploits0References6
Rows per page
Query Builder