CVE tracker
312 subscribers
4.42K links
News monitoring: @irnewsagency

Main channel: @orgsecuritygate

Site: SecurityGate.org
Download Telegram
CVE-2025-48014 - Apache Directory LDAP Authentication Password Guessing Bypass

CVE ID : CVE-2025-48014
Published : May 20, 2025, 4:15 p.m. | 1 hour, 11 minutes ago
Description : Password guessing limits could be bypassed when using LDAP authentication.
Severity: 7.5 | HIGH
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-48015 - Apache Stratosphere Authentication Information Disclosure

CVE ID : CVE-2025-48015
Published : May 20, 2025, 4:15 p.m. | 1 hour, 11 minutes ago
Description : Failed login response could be different depending on whether the username was local or central.
Severity: 3.7 | LOW
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-48016 - Cisco OpenFlow Discovery Protocol Resource Exhaustion Vulnerability

CVE ID : CVE-2025-48016
Published : May 20, 2025, 4:15 p.m. | 1 hour, 11 minutes ago
Description : OpenFlow discovery protocol can exhaust resources because it is not rate limited
Severity: 4.3 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-48017 - Apache Circuit File Upload Path Traversal

CVE ID : CVE-2025-48017
Published : May 20, 2025, 4:15 p.m. | 1 hour, 11 minutes ago
Description : Improper limitation of pathname in Circuit Provisioning and File Import applications allows modification and uploading of files
Severity: 9.0 | CRITICAL
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-48018 - Adobe ColdFusion Cross-Site Scripting (XSS)

CVE ID : CVE-2025-48018
Published : May 20, 2025, 4:15 p.m. | 1 hour, 11 minutes ago
Description : An authenticated user can modify application state data.
Severity: 7.5 | HIGH
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-37989 - Linux Kernel Phy LED Trigger Memory Leak Vulnerability

CVE ID : CVE-2025-37989
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In the Linux kernel, the following vulnerability has been resolved: net: phy: leds: fix memory leak A network restart test on a router led to an out-of-memory condition, which was traced to a memory leak in the PHY LED trigger code. The root cause is misuse of the devm API. The registration function (phy_led_triggers_register) is called from phy_attach_direct, not phy_probe, and the unregister function (phy_led_triggers_unregister) is called from phy_detach, not phy_remove. This means the register and unregister functions can be called multiple times for the same PHY device, but devm-allocated memory is not freed until the driver is unbound. This also prevents kmemleak from detecting the leak, as the devm API internally stores the allocated pointer. Fix this by replacing devm_kzalloc/devm_kcalloc with standard kzalloc/kcalloc, and add the corresponding kfree calls in the unregister path.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-37990 - "Broadcom brcm80211 WiFi Linux Kernel Uninitialized Variable Use"

CVE ID : CVE-2025-37990
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In the Linux kernel, the following vulnerability has been resolved: wifi: brcm80211: fmac: Add error handling for brcmf_usb_dl_writeimage() The function brcmf_usb_dl_writeimage() calls the function brcmf_usb_dl_cmd() but dose not check its return value. The 'state.state' and the 'state.bytes' are uninitialized if the function brcmf_usb_dl_cmd() fails. It is dangerous to use uninitialized variables in the conditions. Add error handling for brcmf_usb_dl_cmd() to jump to error handling path if the brcmf_usb_dl_cmd() fails and the 'state.state' and the 'state.bytes' are uninitialized. Improve the error message to report more detailed error information.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-37991 - HP parisc SIGFPE Double Crash Vulnerability

CVE ID : CVE-2025-37991
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In the Linux kernel, the following vulnerability has been resolved: parisc: Fix double SIGFPE crash Camm noticed that on parisc a SIGFPE exception will crash an application with a second SIGFPE in the signal handler. Dave analyzed it, and it happens because glibc uses a double-word floating-point store to atomically update function descriptors. As a result of lazy binding, we hit a floating-point store in fpe_func almost immediately. When the T bit is set, an assist exception trap occurs when when the co-processor encounters *any* floating-point instruction except for a double store of register %fr0. The latter cancels all pending traps. Let's fix this by clearing the Trap (T) bit in the FP status register before returning to the signal handler in userspace. The issue can be reproduced with this test program: root@parisc:~# cat fpe.c static void fpe_func(int sig, siginfo_t *i, void *v) { sigset_t set; sigemptyset(&set); sigaddset(&set, SIGFPE); sigprocmask(SIG_UNBLOCK, &set, NULL); printf("GOT signal %d with si_code %ld\n", sig, i->si_code); } int main() { struct sigaction action = { .sa_sigaction = fpe_func, .sa_flags = SA_RESTART|SA_SIGINFO }; sigaction(SIGFPE, &action, 0); feenableexcept(FE_OVERFLOW); return printf("%lf\n",1.7976931348623158E308*1.7976931348623158E308); } root@parisc:~# gcc fpe.c -lm root@parisc:~# ./a.out Floating point exception root@parisc:~# strace -f ./a.out execve("./a.out", ["./a.out"], 0xf9ac7034 /* 20 vars */) = 0 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0 ... rt_sigaction(SIGFPE, {sa_handler=0x1110a, sa_mask=[], sa_flags=SA_RESTART|SA_SIGINFO}, NULL, 8) = 0 --- SIGFPE {si_signo=SIGFPE, si_code=FPE_FLTOVF, si_addr=0x1078f} --- --- SIGFPE {si_signo=SIGFPE, si_code=FPE_FLTOVF, si_addr=0xf8f21237} --- +++ killed by SIGFPE +++ Floating point exception
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-46724 - Langroid TableChatAgent Code Injection Vulnerability

CVE ID : CVE-2025-46724
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : Langroid is a Python framework to build large language model (LLM)-powered applications. Prior to version 0.53.15, `TableChatAgent` uses `pandas eval()`. If fed by untrusted user input, like the case of a public-facing LLM application, it may be vulnerable to code injection. Langroid 0.53.15 sanitizes input to `TableChatAgent` by default to tackle the most common attack vectors, and added several warnings about the risky behavior in the project documentation.
Severity: 9.8 | CRITICAL
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-46725 - Langroid LanceDocChatAgent Pandas Evaluator Command Injection

CVE ID : CVE-2025-46725
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : Langroid is a Python framework to build large language model (LLM)-powered applications. Prior to version 0.53.15, `LanceDocChatAgent` uses pandas eval() through `compute_from_docs()`. As a result, an attacker may be able to make the agent run malicious commands through `QueryPlan.dataframe_calc]`) compromising the host system. Langroid 0.53.15 sanitizes input to the affected function by default to tackle the most common attack vectors, and added several warnings about the risky behavior in the project documentation.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-47277 - NVIDIA vLLM Unauthenticated Remote Code Execution

CVE ID : CVE-2025-47277
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : vLLM, an inference and serving engine for large language models (LLMs), has an issue in versions 0.6.5 through 0.8.4 that ONLY impacts environments using the `PyNcclPipe` KV cache transfer integration with the V0 engine. No other configurations are affected. vLLM supports the use of the `PyNcclPipe` class to establish a peer-to-peer communication domain for data transmission between distributed nodes. The GPU-side KV-Cache transmission is implemented through the `PyNcclCommunicator` class, while CPU-side control message passing is handled via the `send_obj` and `recv_obj` methods on the CPU side.​ The intention was that this interface should only be exposed to a private network using the IP address specified by the `--kv-ip` CLI parameter. The vLLM documentation covers how this must be limited to a secured network. The default and intentional behavior from PyTorch is that the `TCPStore` interface listens on ALL interfaces, regardless of what IP address is provided. The IP address given was only used as a client-side address to use. vLLM was fixed to use a workaround to force the `TCPStore` instance to bind its socket to a specified private interface. As of version 0.8.5, vLLM limits the `TCPStore` socket to the private interface as configured.
Severity: 9.8 | CRITICAL
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-47850 - JetBrains YouTrack Attachment Visibility Bypass

CVE ID : CVE-2025-47850
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In JetBrains YouTrack before 2025.1.74704 restricted attachments could become visible after issue cloning
Severity: 4.3 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-47851 - JetBrains TeamCity Stored XSS Vulnerability

CVE ID : CVE-2025-47851
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In JetBrains TeamCity before 2025.03.2 stored XSS via GitHub Checks Webhook was possible
Severity: 4.8 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-47852 - JetBrains TeamCity Stored XSS Vulnerability

CVE ID : CVE-2025-47852
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In JetBrains TeamCity before 2025.03.2 stored XSS via YouTrack integration was possible
Severity: 4.8 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-47853 - JetBrains TeamCity Stored Cross-Site Scripting Vulnerability

CVE ID : CVE-2025-47853
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In JetBrains TeamCity before 2025.03.2 stored XSS via Jira integration was possible
Severity: 4.8 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-47854 - JetBrains TeamCity Open Redirect Vulnerability

CVE ID : CVE-2025-47854
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In JetBrains TeamCity before 2025.03.2 open redirect was possible on editing VCS Root page
Severity: 4.3 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-48391 - JetBrains YouTrack Unauthenticated Issue Deletion Vulnerability

CVE ID : CVE-2025-48391
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : In JetBrains YouTrack before 2025.1.76253 deletion of issues was possible due to missing permission checks in API
Severity: 7.7 | HIGH
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-4364 - Apache HTTP Server Information Disclosure

CVE ID : CVE-2025-4364
Published : May 20, 2025, 6:15 p.m. | 3 hours, 11 minutes ago
Description : The affected products could allow an unauthenticated attacker to access system information that could enable further access to sensitive files and obtain administrative credentials.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-47290 - Containerd TOCTOU File System Manipulation Vulnerability

CVE ID : CVE-2025-47290
Published : May 20, 2025, 7:15 p.m. | 2 hours, 11 minutes ago
Description : containerd is a container runtime. A time-of-check to time-of-use (TOCTOU) vulnerability was found in containerd v2.1.0. While unpacking an image during an image pull, specially crafted container images could arbitrarily modify the host file system. The only affected version of containerd is 2.1.0. Other versions of containerd are not affected. This bug has been fixed in containerd 2.1.1. Users should update to this version to resolve the issue. As a workaround, ensure that only trusted images are used and that only trusted users have permissions to import images.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-4996 - Intelbras RF 301K Cross-Site Scripting Vulnerability

CVE ID : CVE-2025-4996
Published : May 20, 2025, 7:15 p.m. | 2 hours, 10 minutes ago
Description : A vulnerability, which was classified as problematic, has been found in Intelbras RF 301K 1.1.5. This issue affects some unknown processing of the component Add Static IP. The manipulation of the argument Description leads to cross site scripting. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used. The vendor was contacted early about this disclosure.
Severity: 2.4 | LOW
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-44881 - Wavlink WL-WN579A3 Command Injection Vulnerability

CVE ID : CVE-2025-44881
Published : May 20, 2025, 8:15 p.m. | 1 hour, 11 minutes ago
Description : A command injection vulnerability in the component /cgi-bin/qos.cgi of Wavlink WL-WN579A3 v1.0 allows attackers to execute arbitrary commands via a crafted input.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...