Lucene search
+L

1312280 matches found

Huntr
Huntr
added 2026/03/13 1:57 a.m.16 views

model.weights.h5: h5py.ExternalLink at Group level silently followed during load_model(), bypassing CVE-2025-9905 fix — information disclosure from arbitrary HDF5 files

Keras 3.x introduced a fix for CVE-2025-9905 by checking dataset.external in H5IOStore.verifydataset. This check blocks datasets whose raw bytes are stored in external files via the HDF5 "External Data Storage" mechanism. However, HDF5 supports a second, unrelated external-reference mechanism:...

7.3CVSS7.5AI score0.00203EPSS
SaveExploits1
Hacker One
Hacker One
added 2026/03/12 10:55 p.m.22 views

Ruby on Rails: Rails::HTML::Sanitizer.allowed_uri? returns true for entity-encoded control-character-split javascript: URLs

A vulnerability was discovered in the Rails::HTML::Sanitizer.alloweduri? method of the rails-html-sanitizer library. The method incorrectly returned true for entity-encoded control-character-split javascript: URLs, which could lead to potential security issues if the application relied on the...

5.8AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/12 8:45 p.m.6 views

Monero: Restricted RPC Policy Bypass on ZMQ JSON-RPC Allows Unauthenticated Remote Admin Actions

A high-severity access-control issue was found in Monero's ZMQ JSON-RPC surface. When the daemon is started in restricted/public-node mode, the HTTP RPC layer correctly suppresses admin-only methods, but the ZMQ JSON-RPC layer did not inherit or enforce that restriction. This allowed an...

5.6AI score
SaveExploits0
Huntr
Huntr
added 2026/03/12 3:45 p.m.13 views

Uncontrolled Search Path in HunposTagger Allows Untrusted Local Binary Selection in nltk/nltk

Description HunposTagger resolves hunpos-tag using a search list that includes the current working directory ".". This allows attacker-controlled binaries in CWD to be selected. Affected code path: nltk/tag/hunpos.py: hunpospaths = ".", ... self.hunposbin = findbinary"hunpos-tag", ...,...

6.3AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/12 4:28 a.m.30 views

Lovable VDP: Bypass of Open Redirect Fix on lovable.dev via /..// Path Traversal in redirect parameter

A bypass was discovered for a previously patched open redirect vulnerability on a web application. The original fix blocked certain payloads, but failed to account for path traversal sequences combined with double slashes. By supplying a specific redirect value, an attacker could still redirect...

5.9AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/11 4:6 p.m.19 views

curl: Curl_compareheader() fails to match multi-value HTTP headers

Summary Curlcompareheader in lib/http.c fails to scan the full value of HTTP headers for substring matches. Due to an incorrect loop condition, only the first byte position of the header value is checked. This causes curl to miss connection options like close when they appear as non-first tokens ...

5.8AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/11 3:2 p.m.14 views

curl: urlapi: off-by-one in custom scheme validation skips last character

Summary In lib/urlapi.c, the seturlscheme function has an off-by-one error when validating custom scheme names. The validation loop checks scheme0 twice once by ISALPHA, once in the loop and never checks the last character. This allows schemes ending with any arbitrary byte e.g., foo!, bar, bad/ ...

5.9AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/11 12:40 a.m.17 views

curl: NULL Pointer Dereference (DoS) in libcurl SFTP QUOTE command parsing due to missing return statement

Summary: A logic flaw in lib/vssh/libssh2.c causes a NULL pointer dereference when parsing SFTP QUOTE commands with trailing garbage. The function returnquoteerror is called to handle errors and free memory, but the return keyword is missing in several blocks e.g., lines 840, 857, 870. This allow...

5.8AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/10 7:58 a.m.22 views

curl: CURLOPT_UNRESTRICTED_AUTH Dangerous Default Documentation Gap

Summary: CURLOPTUNRESTRICTEDAUTH=1 instructs libcurl to send credentials to ALL hosts during redirect chains, 'possibly again and again as the following hosts can keep redirecting to new hosts.' The documentation explicitly warns this is dangerous, but the default behavior is also risky: curl onl...

5.8AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/10 7:43 a.m.27 views

curl: Connection Reuse Ignores OAuth Bearer Token Mismatch

Summary: The connection pool reuse function urlmatchconn in lib/url.c checks oauthbearer in its credential match block — but only for protocols marked as requiring per-connection credentials. For HTTP, OAuth bearer is passed as a header, not a protocol-level credential. If a libcurl application...

8.1CVSS6.6AI score0.02161EPSS
SaveExploits1
Hacker One
Hacker One
added 2026/03/09 1:57 p.m.25 views

Nextcloud: Stored XSS in attachment-display exploitable through SameSite

A stored XSS vulnerability was discovered in the attachment-display feature of Roundcube. By uploading an HTML file and opening it through the display-attachment endpoint, the embedded script could execute under the Roundcube origin. The issue was caused by the lack of a restrictive Content...

5.8AI score
SaveExploits0
Huntr
Huntr
added 2026/03/09 12:11 a.m.16 views

Arbitrary File Write via Path Traversal in Malicious NLTK Downloader Index (nltk.downloader.Package.fromxml)

NLTK relies on the nltk.downloader.Downloader class to securely fetch corpora and models. It fetches an index.xml file to map package ids to payload URLs. A critical Arbitrary File Write vulnerability exists in nltk.downloader.Package.fromxml due to a lack of sanitization on the id field. When...

6.4AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/08 6:38 p.m.21 views

IBM: Potential Subdomain Takeover on IBM.com domain.

A potential subdomain takeover on an IBM.com domain was reported to IBM, analyzed, and remediated...

5.8AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/08 11:47 a.m.23 views

curl: Use-After-Free in SMB connection reuse (req->path dangling pointer after needle destruction)

Summary A heap-use-after-free occurs in smbsendopen at lib/smb.c when curl processes two SMB URLs targeting the same host. The function smbparseurlpath sets req-path as a non-owning pointer into smbc-share connection-owned memory. During connection reuse, the needle connection is freed via...

5.5AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/08 11:32 a.m.28 views

curl: CVE-2026-3805: use after free in SMB connection reuse

Summary A heap-use-after-free occurs in smbsendopen at lib/smb.c when curl processes two SMB URLs targeting the same host. The function smbparseurlpath sets req-path as a non-owning pointer into smbc-share connection-owned memory. During connection reuse, the needle connection is freed via...

7.5CVSS5.8AI score0.00745EPSS
SaveExploits2
Hacker One
Hacker One
added 2026/03/08 8:8 a.m.29 views

Lovable VDP: Business Logic Bypass Allows Setting “Read Access” Role Without Pro Plan Subscription

A business logic vulnerability was identified that allowed users on a free plan to generate an invitation link that assigned the "Read Access" role, which was intended to be restricted to users with a Pro Plan subscription. The vulnerability was triggered by manipulating the invitation creation...

5.8AI score
SaveExploits0
Hacker One
Hacker One
added 2026/03/08 7:16 a.m.18 views

AWS VDP: SQL Injection Detection Bypass in AWS WAF Managed Rules (AWSManagedRulesSQLiRuleSet)

Researchers This vulnerability was discovered through collaborative security research. Researchers: - █████ - █████████ - █████████ --- Summary AWS WAF fails to detect certain SQL injection payload variants. These payloads bypass the AWS WAF SQL injection detection rules and reach the backend...

6.1AI score
SaveExploits0
Huntr
Huntr
added 2026/03/07 6:0 p.m.6 views

Denial of Service via Uncaught std::filesystem_error in Model Repository Load API (file: parameter NAME_MAX boundary)

This report is not public...

5.3AI score
SaveExploits0
Huntr
Huntr
added 2026/03/07 3:45 p.m.15 views

Path Traversal via Unsanitized Version String in Versioned Dataset Loading

This report is not public...

7.1CVSS5.3AI score0.00186EPSS
SaveExploits1
Huntr
Huntr
added 2026/03/07 2:36 p.m.13 views

Unsafe cloudpickle deserialization in Prefect task runners and bundle deserialization

This report is not public...

5.4AI score
SaveExploits0
Rows per page
Query Builder