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

Main channel: @orgsecuritygate

Site: SecurityGate.org
Download Telegram
CVE-2025-38349 - Linux Kernel Epoll Use-After-Free Vulnerability

CVE ID : CVE-2025-38349
Published : July 18, 2025, 8:15 a.m. | 3 hours, 41 minutes ago
Description : In the Linux kernel, the following vulnerability has been resolved: eventpoll: don't decrement ep refcount while still holding the ep mutex Jann Horn points out that epoll is decrementing the ep refcount and then doing a mutex_unlock(&ep->mtx); afterwards. That's very wrong, because it can lead to a use-after-free. That pattern is actually fine for the very last reference, because the code in question will delay the actual call to "ep_free(ep)" until after it has unlocked the mutex. But it's wrong for the much subtler "next to last" case when somebody *else* may also be dropping their reference and free the ep while we're still using the mutex. Note that this is true even if that other user is also using the same ep mutex: mutexes, unlike spinlocks, can not be used for object ownership, even if they guarantee mutual exclusion. A mutex "unlock" operation is not atomic, and as one user is still accessing the mutex as part of unlocking it, another user can come in and get the now released mutex and free the data structure while the first user is still cleaning up. See our mutex documentation in Documentation/locking/mutex-design.rst, in particular the section [1] about semantics: "mutex_unlock() may access the mutex structure even after it has internally released the lock already - so it's not safe for another context to acquire the mutex and assume that the mutex_unlock() context is not using the structure anymore" So if we drop our ep ref before the mutex unlock, but we weren't the last one, we may then unlock the mutex, another user comes in, drops _their_ reference and releases the 'ep' as it now has no users - all while the mutex_unlock() is still accessing it. Fix this by simply moving the ep refcount dropping to outside the mutex: the refcount itself is atomic, and doesn't need mutex protection (that's the whole _point_ of refcounts: unlike mutexes, they are inherently about object lifetimes).
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-6023 - Grafana Open Redirect XSS Vulnerability

CVE ID : CVE-2025-6023
Published : July 18, 2025, 8:15 a.m. | 3 hours, 41 minutes ago
Description : An open redirect vulnerability has been identified in Grafana OSS that can be exploited to achieve XSS attacks. The vulnerability was introduced in Grafana v11.5.0. The open redirect can be chained with path traversal vulnerabilities to achieve XSS. Fixed in versions 12.0.2+security-01, 11.6.3+security-01, 11.5.6+security-01, 11.4.6+security-01 and 11.3.8+security-01
Severity: 7.6 | HIGH
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-6197 - Grafana Open Redirect Vulnerability

CVE ID : CVE-2025-6197
Published : July 18, 2025, 8:15 a.m. | 3 hours, 41 minutes ago
Description : An open redirect vulnerability has been identified in Grafana OSS organization switching functionality. Prerequisites for exploitation: - Multiple organizations must exist in the Grafana instance - Victim must be on a different organization than the one specified in the URL
Severity: 4.2 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-6226 - Mattermost Authorization Bypass Vulnerability

CVE ID : CVE-2025-6226
Published : July 18, 2025, 9:15 a.m. | 2 hours, 41 minutes ago
Description : Mattermost versions 10.5.x <= 10.5.6, 10.8.x <= 10.8.1, 10.7.x <= 10.7.3, 9.11.x <= 9.11.16 fail to verify authorization when retrieving cached posts by PendingPostID which allows an authenticated user to read posts in private channels they don't have access to via guessing the PendingPostID of recently created posts.
Severity: 6.5 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-7444 - "LoginPress Pro WordPress Authentication Bypass Vulnerability"

CVE ID : CVE-2025-7444
Published : July 18, 2025, 9:15 a.m. | 2 hours, 41 minutes ago
Description : The LoginPress Pro plugin for WordPress is vulnerable to authentication bypass in all versions up to, and including, 5.0.1. This is due to insufficient verification on the user being returned by the social login token. This makes it possible for unauthenticated attackers to log in as any existing user on the site, such as an administrator, if they have access to the email and the user does not have an already-existing account for the service returning the token.
Severity: 9.8 | CRITICAL
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-2425 - ESET Security Software TOCTTOU File Truncation Vulnerability

CVE ID : CVE-2025-2425
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : Time-of-check to time-of-use race condition vulnerability potentially allowed an attacker to use the installed ESET security software to clear the content of an arbitrary file on the file system.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-49484 - Joomla JS Jobs SQL Injection

CVE ID : CVE-2025-49484
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : A SQL injection vulnerability in the JS Jobs plugin versions 1.0.0-1.4.1 for Joomla allows low-privilege users to execute arbitrary SQL commands via the 'cvid' parameter in the employee application feature.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-49485 - Balbooa Forms SQL Injection Vulnerability

CVE ID : CVE-2025-49485
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : A SQL injection vulnerability in the Balbooa Forms plugin 1.0.0-2.3.1.1 for Joomla allows privileged users to execute arbitrary SQL commands via the 'id' parameter.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-49486 - Balbooa Gallery Joomla Stored XSS

CVE ID : CVE-2025-49486
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : A stored XSS vulnerability in the Balbooa Gallery plugin 1.0.0-2.4.0 for Joomla allows privileged users to store malicious scripts in gallery items.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-50056 - Joomla RSMail Reflected Cross-Site Scripting Vulnerability

CVE ID : CVE-2025-50056
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : A reflected XSS vulnerability in RSMail! component 1.19.20 - 1.22.26 28 Joomla was discovered. The issue allows remote attackers to inject arbitrary web script or HTML via the crafted parameter.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-50057 - RSFiles! Denial of Service (DOS) Vulnerability

CVE ID : CVE-2025-50057
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : A DOS vulnerability in RSFiles! component 1.16.3-1.17.7 Joomla was discovered. The issue allows unauthenticated remote attackers to deny access to service via the search feature.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-50058 - Joomla RSDirectory! Stored XSS Vulnerability

CVE ID : CVE-2025-50058
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : A stored XSS vulnerability in the RSDirectory! component 1.0.0-2.2.8 Joomla was discovered. The issue allows remote authenticated attackers to inject arbitrary web script or HTML via the review reply component.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-50126 - Joomla RSBlog! Stored XSS Vulnerability

CVE ID : CVE-2025-50126
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : A stored XSS vulnerability in the RSBlog! component 1.11.6-1.14.5 Joomla was discovered. The issue allows remote authenticated users to inject arbitrary web script or HTML via the jform[tags_text] parameter.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-6233 - Mattermost File Attachment Path Traversal Vulnerability

CVE ID : CVE-2025-6233
Published : July 18, 2025, 10:15 a.m. | 1 hour, 40 minutes ago
Description : Mattermost versions 10.8.x <= 10.8.1, 10.7.x <= 10.7.3, 10.5.x <= 10.5.7, 9.11.x <= 9.11.16 fail to sanitize input paths of file attachments in the bulk import JSONL file, which allows a system admin to read arbitrary system files via path traversal.
Severity: 6.8 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-6227 - Mattermost Auth Token Interception Vulnerability

CVE ID : CVE-2025-6227
Published : July 18, 2025, 12:15 p.m. | 3 hours, 41 minutes ago
Description : Mattermost versions 10.5.x <= 10.5.7, 9.11.x <= 9.11.16 fail to negotiate a new token when accepting the invite which allows a user that intercepts both invite and password to send synchronization payloads to the server that originally created the invite via the REST API.
Severity: 2.2 | LOW
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-7785 - JeeSite Open Redirect Vulnerability

CVE ID : CVE-2025-7785
Published : July 18, 2025, 12:15 p.m. | 3 hours, 41 minutes ago
Description : A vulnerability classified as problematic was found in thinkgem JeeSite up to 5.12.0. This vulnerability affects the function sso of the file src/main/java/com/jeesite/modules/sys/web/SsoController.java. The manipulation of the argument redirect leads to open redirect. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used. The patch is identified as 3d06b8d009d0267f0255acc87ea19d29d07cedc3. It is recommended to apply a patch to fix this issue.
Severity: 4.3 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2024-13175 - Vidco Software VOC TESTER Authorization Bypass

CVE ID : CVE-2024-13175
Published : July 18, 2025, 2:15 p.m. | 1 hour, 41 minutes ago
Description : Authorization Bypass Through User-Controlled Key vulnerability in Vidco Software VOC TESTER allows Forceful Browsing.This issue affects VOC TESTER: before 12.41.0.
Severity: 5.5 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-46001 - Apache Filemanager PHP File Upload RCE

CVE ID : CVE-2025-46001
Published : July 18, 2025, 2:15 p.m. | 1 hour, 41 minutes ago
Description : An arbitrary file upload vulnerability in the is_allowed_file_type() function of Filemanager v2.3.0 allows attackers to execute arbitrary code via uploading a crafted PHP file.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-46002 - Apache Filemanager Directory Traversal Vulnerability

CVE ID : CVE-2025-46002
Published : July 18, 2025, 2:15 p.m. | 1 hour, 41 minutes ago
Description : An issue in Filemanager v2.5.0 and below allows attackers to execute a directory traversal via sending a crafted HTTP request to the filemanager.php endpoint.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-7784 - Keycloak Fine-Grained Admin Permissions Privilege Escalation Vulnerability

CVE ID : CVE-2025-7784
Published : July 18, 2025, 2:15 p.m. | 1 hour, 41 minutes ago
Description : A flaw was found in the Keycloak identity and access management system when Fine-Grained Admin Permissions(FGAPv2) are enabled. An administrative user with the manage-users role can escalate their privileges to realm-admin due to improper privilege enforcement. This vulnerability allows unauthorized elevation of access rights, compromising the intended separation of administrative duties and posing a security risk to the realm.
Severity: 6.5 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-7786 - Gnuboard Cross-Site Scripting Vulnerability

CVE ID : CVE-2025-7786
Published : July 18, 2025, 2:15 p.m. | 1 hour, 41 minutes ago
Description : A vulnerability, which was classified as problematic, has been found in Gnuboard g6 up to 6.0.10. This issue affects some unknown processing of the file /bbs/scrap_popin_update/qa/ of the component Post Reply Handler. The manipulation leads to cross site scripting. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used.
Severity: 3.5 | LOW
Visit the link for more details, such as CVSS details, affected products, timeline, and more...