Lucene search
+L

17446 matches found

RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.17 views

golang.org/x/net/html: Infinite parsing loop in golang.org/x/net

The html.Parse function in golang.org/x/net/html has an infinite parsing loop when processing certain inputs, which can lead to denial of service DoS in an exposed go application if an attacker provides specially crafted HTML content...

5.3CVSS6.1AI score0.00501EPSS
SaveExploits1References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.15 views

encoding/pem: Quadratic complexity when parsing some invalid inputs in encoding/pem

A potential denial of service flaw has been discovered in the golang encoding/pem module. Due to the design of the PEM parsing function, the processing time for some inputs scales non-linearly with respect to the size of the input. This affects programs which parse untrusted PEM inputs and may...

7.5CVSS6AI score0.00617EPSS
SaveExploits0References9
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.20 views

golang: crypto/x509: excluded subdomain constraint does not restrict wildcard SANs

A flaw was found in the crypto/x509 package in the Go standard library. This vulnerability allows a certificate validation bypass via an excluded subdomain constraint in a certificated chain as it does not restrict the usage of wildcard SANs in the leaf certificate...

6.5CVSS6.1AI score0.00284EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.18 views

os: FileInfo can escape from a Root in golang os module

A path traversal flaw has been discovered in the golang os module. On Unix platforms, when listing the contents of a directory using File.ReadDir or File.Readdir the returned FileInfo could reference a file outside of the Root in which the File was opened. The impact of this escape is limited to...

2.5CVSS6.1AI score0.00201EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.19 views

os: os: Information disclosure via path traversal using specially crafted filenames

A path traversal vulnerability has been identified in the Go os package affecting the Root abstraction, where improper handling of trailing path separators could allow access to the parent directory of a configured root directory. By supplying a filename ending in "../", an attacker may be able t...

3.8CVSS6AI score0.00242EPSS
SaveExploits0References9
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.16 views

golang: net/url: Memory exhaustion in query parameter parsing in net/url

A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted...

7.5CVSS6.9AI score0.02128EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.20 views

cmd/go: cmd/go: Arbitrary file write via malicious pkg-config directive

A flaw was found in cmd/go. An attacker can exploit this by building a malicious Go source file that uses the 'cgo pkg-config:' directive. This allows the attacker to write to an arbitrary file with partial control over its content, by providing a '--log-file' argument to the pkg-config command...

8.6CVSS6.1AI score0.00552EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.19 views

net/url: Incorrect parsing of IPv6 host literals in net/url

The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid...

7.5CVSS7AI score0.00728EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.29 views

golang.org/x/net/http2: golang.org/x/net/http2: Denial of Service due to malformed HTTP/2 frames

A flaw was found in golang.org/x/net/http2. A remote attacker can exploit this vulnerability by sending specially crafted HTTP/2 frames, which are data packets used in the HTTP/2 protocol. Due to a missing check for null values, processing these specific frames types 0x0a through 0x0f can cause t...

7.5CVSS6AI score0.00501EPSS
SaveExploits0References7
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.19 views

golang: cmd/compile: no-op interface conversion bypasses overlap checking

A flaw was found in the cmd/compile package in the Go standard library. A no-op interface conversion prevented the compiler from correctly identifying non-overlapping memory moves. As a result, the compiler allows unsafe memory move operations to occur at runtime, potentially causing data...

7.1CVSS6.1AI score0.00261EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.21 views

net/http: CrossOriginProtection bypass in net/http

A CrossOriginProtection bypass has been discovered in the golang net/http package. When using http.CrossOriginProtection, the AddInsecureBypassPattern method can unexpectedly bypass more requests than intended. CrossOriginProtection then skips validation, but forwards the original request path,...

5.4CVSS6AI score0.0033EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.22 views

golang: cmd/compile: possible memory corruption after bound check elimination

A flaw was found in the cmd/compile package in the Go standard library. The compiler fails to correctly check for integer overflow or underflow in arithmetic operations involving loop induction variables. As a result, the compiler allows invalid memory indexing to occur at runtime, potentially...

9.8CVSS6.1AI score0.00536EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.19 views

golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip

A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A ...

6.5CVSS6.9AI score0.00668EPSS
SaveExploits1References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.20 views

cmd/cgo: Go cgo: Code smuggling due to comment parsing discrepancy

A flaw was found in Go's 'cgo tool'. This vulnerability arises from a discrepancy in how Go and C/C++ comments are parsed, which allows for malicious code to be hidden within comments and then "smuggled" into the compiled cgo binary. An attacker could exploit this to embed and execute arbitrary...

8.6CVSS7.1AI score0.00481EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.18 views

golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root

A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the Root.Chmod function is replaced with a symbolic link during execution, specifically after Root.Chmod checks the target but before acting, the chmod operation will be performed on the file the...

6.4CVSS6AI score0.00292EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.15 views

crypto/x509: Quadratic complexity when checking name constraints in crypto/x509

A potential denial of service flaw has been discovered in golang's crypto/x509 module. Due to the design of the name constraint checking algorithm, the processing time of some inputs scales non-linearly with respect to the size of the certificate. This affects programs which validate arbitrary...

7.5CVSS6.1AI score0.00379EPSS
SaveExploits0References9
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.32 views

html/template: URLs in meta content attribute actions are not escaped in html/template

An input escaping flaw has been discovered in the golang html/template module. Actions which insert URLs into the content attribute of HTML meta tags are not escaped. This can allow XSS if the meta tag also has an http-equiv attribute with the value "refresh". A new GODEBUG setting has been added...

6.1CVSS6AI score0.00328EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.15 views

crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation

A flaw was found in Go's crypto/x509 package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service DoS for...

7.5CVSS6.1AI score0.00355EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.15 views

crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages

A flaw was found in the crypto/tls package within the Go golang standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock,...

7.5CVSS6.1AI score0.00621EPSS
SaveExploits0References8
RedHat Linux
RedHat Linux
added 2026/04/09 11:00 a.m.22 views

html/template: golang: html/template: Cross-Site Scripting (XSS) via improper context and brace depth tracking in JS template literals

A flaw was found in the html/template package. This vulnerability arises from improper tracking of context and brace depth within JavaScript JS template literals. A remote attacker could exploit these issues to cause content to be incorrectly or improperly escaped, leading to Cross-Site Scripting...

6.1CVSS6AI score0.0029EPSS
SaveExploits0References8
Rows per page
Query Builder