CVE tracker
279 subscribers
3.78K links
News monitoring: @irnewsagency

Main channel: @orgsecuritygate

Site: SecurityGate.org
Download Telegram
CVE-2026-20796 - Time-of-check time-of-use vulnerability in common teams API

CVE ID : CVE-2026-20796
Published : Feb. 13, 2026, 11:16 a.m. | 17 minutes ago
Description : Mattermost versions 10.11.x <= 10.11.9 fail to properly validate channel membership at the time of data retrieval which allows a deactivated user to learn team names they should not have access to via a race condition in the /common_teams API endpoint.. Mattermost Advisory ID: MMSA-2025-00549
Severity: 3.1 | LOW
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-22892 - Insufficient Authorization in Mattermost Jira Plugin Allows Unauthorized Access to Post Attachments

CVE ID : CVE-2026-22892
Published : Feb. 13, 2026, 11:16 a.m. | 17 minutes ago
Description : Mattermost versions 11.1.x <= 11.1.2, 10.11.x <= 10.11.9, 11.2.x <= 11.2.1 fail to validate user permissions when creating Jira issues from Mattermost posts, which allows an authenticated attacker with access to the Jira plugin to read post content and attachments from channels they do not have access to via the /create-issue API endpoint by providing the post ID of an inaccessible post.. Mattermost Advisory ID: MMSA-2025-00550
Severity: 4.3 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-33042 - Apache Avro Java SDK: Code injection on Java generated code

CVE ID : CVE-2025-33042
Published : Feb. 13, 2026, 12:16 p.m. | 3 hours, 17 minutes ago
Description : Improper Control of Generation of Code ('Code Injection') vulnerability in Apache Avro Java SDK when generating specific records from untrusted Avro schemas. This issue affects Apache Avro Java SDK: all versions through 1.11.4 and version 1.12.0. Users are recommended to upgrade to version 1.12.1 or 1.11.5, which fix the issue.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-2443 - Libsoup: out-of-bounds read in libsoup handle_partial_get() leading to heap information disclosure

CVE ID : CVE-2026-2443
Published : Feb. 13, 2026, 12:16 p.m. | 3 hours, 17 minutes ago
Description : A flaw was identified in libsoup, a widely used HTTP library in GNOME-based systems. When processing specially crafted HTTP Range headers, the library may improperly validate requested byte ranges. In certain build configurations, this could allow a remote attacker to access portions of server memory beyond the intended response. Exploitation requires a vulnerable configuration and access to a server using the embedded SoupServer component.
Severity: 5.3 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-14349 - Business Logic Error in Universal Software's FlexCity/Kiosk

CVE ID : CVE-2025-14349
Published : Feb. 13, 2026, 2:16 p.m. | 1 hour, 17 minutes ago
Description : Privilege Defined With Unsafe Actions, Missing Authentication for Critical Function vulnerability in Universal Software Inc. FlexCity/Kiosk allows Accessing Functionality Not Properly Constrained by ACLs, Privilege Escalation.This issue affects FlexCity/Kiosk: from 1.0 before 1.0.36.
Severity: 8.8 | HIGH
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-1618 - Admin Account Takeover in Universal Sotware's FlexCity/Kiosk

CVE ID : CVE-2026-1618
Published : Feb. 13, 2026, 2:16 p.m. | 1 hour, 17 minutes ago
Description : Authentication Bypass Using an Alternate Path or Channel vulnerability in Universal Software Inc. FlexCity/Kiosk allows Privilege Escalation.This issue affects FlexCity/Kiosk: from 1.0 before 1.0.36.
Severity: 8.8 | HIGH
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-1619 - IDOR in Universal Sotware's FlexCity/Kiosk

CVE ID : CVE-2026-1619
Published : Feb. 13, 2026, 2:16 p.m. | 1 hour, 17 minutes ago
Description : Authorization Bypass Through User-Controlled Key vulnerability in Universal Software Inc. FlexCity/Kiosk allows Exploitation of Trusted Identifiers.This issue affects FlexCity/Kiosk: from 1.0 before 1.0.36.
Severity: 8.3 | HIGH
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-23111 - netfilter: nf_tables: fix inverted genmask check in nft_map_catchall_activate()

CVE ID : CVE-2026-23111
Published : Feb. 13, 2026, 2:16 p.m. | 1 hour, 17 minutes ago
Description : In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: fix inverted genmask check in nft_map_catchall_activate() nft_map_catchall_activate() has an inverted element activity check compared to its non-catchall counterpart nft_mapelem_activate() and compared to what is logically required. nft_map_catchall_activate() is called from the abort path to re-activate catchall map elements that were deactivated during a failed transaction. It should skip elements that are already active (they don't need re-activation) and process elements that are inactive (they need to be restored). Instead, the current code does the opposite: it skips inactive elements and processes active ones. Compare the non-catchall activate callback, which is correct: nft_mapelem_activate(): if (nft_set_elem_active(ext, iter->genmask)) return 0; /* skip active, process inactive */ With the buggy catchall version: nft_map_catchall_activate(): if (!nft_set_elem_active(ext, genmask)) continue; /* skip inactive, process active */ The consequence is that when a DELSET operation is aborted, nft_setelem_data_activate() is never called for the catchall element. For NFT_GOTO verdict elements, this means nft_data_hold() is never called to restore the chain->use reference count. Each abort cycle permanently decrements chain->use. Once chain->use reaches zero, DELCHAIN succeeds and frees the chain while catchall verdict elements still reference it, resulting in a use-after-free. This is exploitable for local privilege escalation from an unprivileged user via user namespaces + nftables on distributions that enable CONFIG_USER_NS and CONFIG_NF_TABLES. Fix by removing the negation so the check matches nft_mapelem_activate(): skip active elements, process inactive ones.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-23112 - nvmet-tcp: add bounds checks in nvmet_tcp_build_pdu_iovec

CVE ID : CVE-2026-23112
Published : Feb. 13, 2026, 2:16 p.m. | 1 hour, 17 minutes ago
Description : In the Linux kernel, the following vulnerability has been resolved: nvmet-tcp: add bounds checks in nvmet_tcp_build_pdu_iovec nvmet_tcp_build_pdu_iovec() could walk past cmd->req.sg when a PDU length or offset exceeds sg_cnt and then use bogus sg->length/offset values, leading to _copy_to_iter() GPF/KASAN. Guard sg_idx, remaining entries, and sg->length/offset before building the bvec.
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-1578 - HP App – Potential Cross-Site Scripting

CVE ID : CVE-2026-1578
Published : Feb. 13, 2026, 3:15 p.m. | 17 minutes ago
Description : HP App for Android is potentially vulnerable to cross-site scripting (XSS) when using an outdated version of the application via mobile devices. HP is releasing updates to mitigate these potential vulnerabilities.
Severity: 5.1 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-25531 - Kanboard TaskCreationController::duplicateProjects() endpoint does not validate user permissions for target projects

CVE ID : CVE-2026-25531
Published : Feb. 13, 2026, 3:15 p.m. | 17 minutes ago
Description : Kanboard is project management software focused on Kanban methodology. Prior to 1.2.50, The fix for CVE-2023-33968 is incomplete. The TaskCreationController::duplicateProjects() endpoint does not validate user permissions for target projects, allowing authenticated users to duplicate tasks into projects they cannot access. This vulnerability is fixed in 1.2.50.
Severity: 4.3 | MEDIUM
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2026-26221 - Hyland OnBase Timer Services Unauthenticated .NET Remoting RCE

CVE ID : CVE-2026-26221
Published : Feb. 13, 2026, 3:21 p.m. | 12 minutes ago
Description : Hyland OnBase contains an unauthenticated .NET Remoting exposure in the OnBase Workflow Timer Service (Hyland.Core.Workflow.NTService.exe) and is also reported by the vendor to impact the Workview Timer Service (an impacted version range is undefined). An attacker who can reach the service can send crafted .NET Remoting requests to default HTTP channel endpoints on TCP/8900 (e.g., TimerServiceAPI.rem and TimerServiceEvents.rem for Workflow) to trigger unsafe object unmarshalling, enabling arbitrary file read/write. By writing attacker-controlled content into web-accessible locations or chaining with other OnBase features, this can lead to remote code execution. The same primitive can be abused by supplying a UNC path to coerce outbound NTLM authentication (SMB coercion) to an attacker-controlled host.
Severity: 10.0 | CRITICAL
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-32734 - Apache HTTP Server Remote Code Execution

CVE ID : CVE-2025-32734
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-35960 - Apache HTTP Server Cross-Site Scripting

CVE ID : CVE-2025-35960
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-35961 - Apache HTTP Server Remote Code Execution

CVE ID : CVE-2025-35961
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-35962 - Apache Struts Command Execution Vulnerability

CVE ID : CVE-2025-35962
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-35976 - Apache Struts XML External Entity (XXE) Injection

CVE ID : CVE-2025-35976
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-35993 - Apache HTTP Server DNS Rebinding

CVE ID : CVE-2025-35993
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-35997 - Apache Struts Remote Code Execution

CVE ID : CVE-2025-35997
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-36517 - Apache Struts SQL Injection

CVE ID : CVE-2025-36517
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...
CVE-2025-36523 - Apache HTTP Server Remote Code Execution

CVE ID : CVE-2025-36523
Published : Feb. 13, 2026, 7:16 p.m. | 18 minutes ago
Description : Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority because it is Unused
Severity: 0.0 | NA
Visit the link for more details, such as CVSS details, affected products, timeline, and more...