CVE Feed

    Dashboard / CVE

    Unknown

    CVE-2026-26249

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    Unknown

    CVE-2026-26250

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    Unknown

    CVE-2026-26251

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    Unknown

    CVE-2026-26252

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    Unknown

    CVE-2026-26253

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    Unknown

    CVE-2026-26254

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    Unknown

    CVE-2026-26255

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    Unknown

    CVE-2026-26256

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    Unknown

    CVE-2026-26257

    Last Modified: 13 Feb 2026

    Not used

    Published: 12 Feb 2026
    6.5
    Medium

    CVE-2025-15574

    Last Modified: 15 Apr 2026

    When connecting to the Solax Cloud MQTT server the username is the "registration number", which is the 10 character string printed on the SolaX Power Pocket device / the QR code on the device. The password is derived from the "registration number" using a proprietary XOR/transposition algorithm. Attackers with the knowledge of the registration numbers can connect to the MQTT server and impersonate the dongle / inverters.

    Published: 12 Feb 2026
    5.3
    Medium

    CVE-2025-15575

    Last Modified: 15 Apr 2026

    The firmware update functionality does not verify the authenticity of the supplied firmware update files. This allows attackers to flash malicious firmware update files on the device. Initial analysis of the firmware update functionality does not show any cryptographic checks (e.g. digital signature checks) on the supplied firmware update files. Furthermore, ESP32 security features such as secure boot are not used.

    Published: 12 Feb 2026
    9.4
    Critical

    CVE-2025-15573

    Last Modified: 15 Apr 2026

    The affected devices do not validate the server certificate when connecting to the SolaX Cloud MQTTS server hosted in the Alibaba Cloud (mqtt001.solaxcloud.com, TCP 8883). This allows attackers in a man-in-the-middle position to act as the legitimate MQTT server and issue arbitrary commands to devices.

    Published: 12 Feb 2026
    5.3
    Medium

    CVE-2026-2276

    Last Modified: 18 Apr 2026

    Reflected Cross-Site Scripting (XSS) vulnerability in the Wix web application, where the endpoint ' https://manage.wix.com/account/account-settings ', responsible for uploading SVG images, does not properly sanitize the content. An authenticated attacker could upload an SVG file containing embedded JavaScript code, which is stored and subsequently executed when other users view the image. Exploiting this vulnerability allows arbitrary code to be executed in the context of the victim's browser, which could lead to the disclosure of sensitive information or the abuse of the affected user's session.

    Published: 12 Feb 2026
    4.8
    Medium

    CVE-2026-1356

    Last Modified: 15 Apr 2026

    The Converter for Media – Optimize images | Convert WebP & AVIF plugin for WordPress is vulnerable to Server-Side Request Forgery in all versions up to, and including, 6.5.1 via the PassthruLoader::load_image_source function. This makes it possible for unauthenticated attackers to make web requests to arbitrary locations originating from the web application and can be used to query and modify information from internal services.

    Published: 12 Feb 2026
    6.8
    Medium

    CVE-2025-41117

    Last Modified: 24 Apr 2026

    Stack traces in Grafana's Explore Traces view can be rendered as raw HTML, and thus inject malicious JavaScript in the browser. This would require malicious JavaScript to be entered into the stack trace field. Only datasources with the Jaeger HTTP API appear to be affected; Jaeger gRPC and Tempo do not appear affected whatsoever.

    Published: 12 Feb 2026
    5.3
    Medium

    CVE-2026-21722

    Last Modified: 24 Apr 2026

    Public dashboards with annotations enabled did not limit their annotation timerange to the locked timerange of the public dashboard. This means one could read the entire history of annotations visible on the specific dashboard, even those outside the locked timerange. This did not leak any annotations that would not otherwise be visible on the public dashboard.

    Published: 12 Feb 2026
    8.7
    High

    CVE-2025-15577

    Last Modified: 23 Feb 2026

    An unauthenticated attacker can exploit this vulnerability by manipulating URL to achieve arbitrary file read access.This issue affects Valmet DNA Web Tools: C2022 and older.

    Published: 12 Feb 2026
    9.8
    Critical

    CVE-2025-14892

    Last Modified: 27 Apr 2026

    The Prime Listing Manager WordPress plugin through 1.1 allows an attacker to gain administrative access without having any kind of account on the targeted site and perform unauthorized actions due to a hardcoded secret.

    Published: 12 Feb 2026
    5.5
    Medium

    CVE-2026-2327

    Last Modified: 17 Apr 2026

    Versions of the package markdown-it from 13.0.0 and before 14.1.1 are vulnerable to Regular Expression Denial of Service (ReDoS) due to the use of the regex /\*+$/ in the linkify function. An attacker can supply a long sequence of * characters followed by a non-matching character, which triggers excessive backtracking and may lead to a denial-of-service condition.

    Published: 12 Feb 2026
    6.3
    Medium

    CVE-2026-2391

    Last Modified: 18 Apr 2026

    ### Summary The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284). ### Details When the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. This permits creation of arbitrarily large arrays from a single parameter, leading to excessive memory allocation. **Vulnerable code** (lib/parse.js: lines ~40-50): ```js if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {     return val.split(','); } if (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {     throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.'); } return val; ``` The `split(',')` returns the array immediately, skipping the subsequent limit check. Downstream merging via `utils.combine` does not prevent allocation, even if it marks overflows for sparse arrays.This discrepancy allows attackers to send a single parameter with millions of commas (e.g., `?param=,,,,,,,,...`), allocating massive arrays in memory without triggering limits. It bypasses the intent of `arrayLimit`, which is enforced correctly for indexed (`a[0]=`) and bracket (`a[]=`) notations (the latter fixed in v6.14.1 per GHSA-6rw7-vpxm-498p). ### PoC **Test 1 - Basic bypass:** ``` npm install qs ``` ```js const qs = require('qs'); const payload = 'a=' + ','.repeat(25); // 26 elements after split (bypasses arrayLimit: 5) const options = { comma: true, arrayLimit: 5, throwOnLimitExceeded: true }; try {   const result = qs.parse(payload, options);   console.log(result.a.length); // Outputs: 26 (bypass successful) } catch (e) {   console.log('Limit enforced:', e.message); // Not thrown } ``` **Configuration:** - `comma: true` - `arrayLimit: 5` - `throwOnLimitExceeded: true` Expected: Throws "Array limit exceeded" error. Actual: Parses successfully, creating an array of length 26. ### Impact Denial of Service (DoS) via memory exhaustion.

    Published: 12 Feb 2026
    7.1
    High

    CVE-2026-25676

    Last Modified: 17 Apr 2026

    The installer of M-Track Duo HD version 1.0.0 contains an issue with the DLL search path, which may lead to insecurely loading Dynamic Link Libraries. As a result, arbitrary code may be executed with administrator privileges.

    Published: 12 Feb 2026
    8.7
    High

    CVE-2026-26235

    Last Modified: 16 Apr 2026

    JUNG Smart Visu Server 1.1.1050 contains a denial of service vulnerability that allows unauthenticated attackers to remotely shutdown or reboot the server. Attackers can send a single POST request to trigger the server reboot without requiring any authentication.

    Published: 12 Feb 2026
    8.7
    High

    CVE-2026-26234

    Last Modified: 16 Apr 2026

    JUNG Smart Visu Server 1.1.1050 contains a request header manipulation vulnerability that allows unauthenticated attackers to override request URLs by injecting arbitrary values in the X-Forwarded-Host header. Attackers can manipulate proxied requests to generate tainted responses, enabling cache poisoning, potential phishing, and redirecting users to malicious domains.

    Published: 12 Feb 2026
    5.3
    Medium

    CVE-2026-1537

    Last Modified: 15 Apr 2026

    The LatePoint – Calendar Booking Plugin for Appointments and Events plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the load_step() function in all versions up to, and including, 5.2.6. This makes it possible for unauthenticated attackers to view booking information including customer names, email addresses, phone numbers, appointment times, and service details.

    Published: 12 Feb 2026
    8.2
    High

    CVE-2026-23857

    Last Modified: 17 Apr 2026

    Dell Update Package (DUP) Framework, versions 23.12.00 through 24.12.00, contains an Improper Handling of Insufficient Permissions or Privileges vulnerability. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Elevation of privileges.

    Published: 12 Feb 2026
    7.8
    High

    CVE-2026-23856

    Last Modified: 18 Apr 2026

    Dell iDRAC Service Module (iSM) for Windows, versions prior to 6.0.3.1, and Dell iDRAC Service Module (iSM) for Linux, versions prior to 5.4.1.1, contain an Improper Access Control vulnerability. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Elevation of privileges.

    Published: 12 Feb 2026
    8.8
    High

    CVE-2026-0969

    Last Modified: 18 Apr 2026

    The serialize function used to compile MDX in next-mdx-remote is vulnerable to arbitrary code execution due to insufficient sanitization of MDX content. This vulnerability, CVE-2026-0969, is fixed in next-mdx-remote 6.0.0.

    Published: 12 Feb 2026
    9.8
    Critical

    CVE-2026-1729

    Last Modified: 16 Apr 2026

    The AdForest theme for WordPress is vulnerable to authentication bypass in all versions up to, and including, 6.0.12. This is due to the plugin not properly verifying a user's identity prior to authenticating them through the 'sb_login_user_with_otp_fun' function. This makes it possible for unauthenticated attackers to log in as arbitrary users, including administrators.

    Published: 12 Feb 2026
    6.5
    Medium

    CVE-2025-56647

    Last Modified: 15 Apr 2026

    npm @farmfe/core before 1.7.6 is Missing Origin Validation in WebSocket. The development (hot module reloading) server does not validate origin when connecting to a WebSocket client. This allows attackers to surveil developers running Farm who visit their webpage and steal source code that is leaked by the WebSocket server.

    Published: 12 Feb 2026
    8.8
    High

    CVE-2025-61880

    Last Modified: 19 Feb 2026

    In Infoblox NIOS through 9.0.7, insecure deserialization can result in remote code execution.

    Published: 12 Feb 2026
    7.7
    High

    CVE-2025-61879

    Last Modified: 19 Feb 2026

    In Infoblox NIOS through 9.0.7, a High-Privileged User Can Trigger an Arbitrary File Write via the Account Creation Mechanism.

    Published: 12 Feb 2026
    9.8
    Critical

    CVE-2025-70981

    Last Modified: 18 Feb 2026

    CordysCRM 1.4.1 is vulnerable to SQL Injection in the employee list query interface (/user/list) via the departmentIds parameter.

    Published: 12 Feb 2026
    5.5
    Medium

    CVE-2025-70092

    Last Modified: 18 Feb 2026

    A cross-site scripting (XSS) vulnerability in the Item Kits function of OpenSourcePOS v3.4.1 allows attackers to execute arbitrary web scripts or HTML via injecting a crafted payload into the Item Name parameter.

    Published: 12 Feb 2026
    6.1
    Medium

    CVE-2025-70845

    Last Modified: 15 Apr 2026

    lty628 aidigu v1.9.1 is vulnerable to Cross Site Scripting (XSS) exists in the /setting/ page where the "intro" field is not properly sanitized or escaped.

    Published: 12 Feb 2026
    9.8
    Critical

    CVE-2025-70314

    Last Modified: 18 Feb 2026

    webfsd 1.21 is vulnerable to a Buffer Overflow via a crafted request. This is due to the filename variable

    Published: 12 Feb 2026
    7.5
    High

    CVE-2025-69806

    Last Modified: 23 Feb 2026

    p2r3 bareiron commit: 8e4d4020d contains an Out-of-bounds Read, which allows unauthenticated remote attackers to get relative information leakage via a packet sent to the server

    Published: 12 Feb 2026
    7.5
    High

    CVE-2025-67433

    Last Modified: 15 Apr 2026

    A heap buffer overflow in the processRequest function of Open TFTP Server MultiThreaded v1.7 allows attackers to cause a Denial of Service (DoS) via a crafted DATA packet.

    Published: 12 Feb 2026
    7.5
    High

    CVE-2025-69807

    Last Modified: 23 Feb 2026

    p2r3 Bareiron commit: 8e4d4020d is vulnerable to Buffer Overflow, which allows unauthenticated remote attackers to cause a denial of service via a packet sent to the server.

    Published: 12 Feb 2026
    7.5
    High

    CVE-2025-70886

    Last Modified: 18 Feb 2026

    An issue in halo v.2.22.4 and before allows a remote attacker to cause a denial of service via a crafted payload to the public comment submission endpoint

    Published: 12 Feb 2026
    5.4
    Medium

    CVE-2026-25828

    Last Modified: 16 Apr 2026

    grub-btrfs through 2026-01-31 (on Arch Linux and derivative distributions) allows initramfs OS command injection because it does not sanitize the $root parameter to resolve_device(). NOTE: a third party reports "exploitation may not be feasible under normal conditions and may depend on specific implementation details within resolve_device."

    Published: 12 Feb 2026
    7.8
    High

    CVE-2025-63421

    Last Modified: 15 Apr 2026

    An issue in filosoft Comerc.32 Commercial Invoicing v.16.0.0.3 allows a local attacker to execute arbitrary code via the comeinst.exe file

    Published: 12 Feb 2026
    7.5
    High

    CVE-2025-67432

    Last Modified: 15 Apr 2026

    A stack overflow in the ZBarcode_Encode function of Monkeybread Software MBS DynaPDF Plugin v21.3.1.1 allows attackers to cause a Denial of Service (DoS) via a crafted input.

    Published: 12 Feb 2026
    4.3
    Medium

    CVE-2025-69752

    Last Modified: 15 Apr 2026

    An issue in the "My Details" user profile functionality of Ideagen Q-Pulse 7.1.0.32 allows an authenticated user to view other users' profile information by modifying the objectKey HTTP parameter in the My Details page URL.

    Published: 12 Feb 2026
    9
    Critical

    CVE-2025-69634

    Last Modified: 15 Apr 2026

    Cross Site Request Forgery vulnerability in Dolibarr ERP & CRM v.22.0.9 allows a remote attacker to escalate privileges via the notes field in perms.php NOTE: this is disputed by a third party who indicates that exploitation can only occur if an unprivileged user knows the token of an admin user.

    Published: 12 Feb 2026
    5.5
    Medium

    CVE-2026-20629

    Last Modified: 16 Apr 2026

    A privacy issue was addressed with improved handling of temporary files. This issue is fixed in macOS Tahoe 26.3. An app may be able to access user-sensitive data.

    Published: 11 Feb 2026
    6.5
    Medium

    CVE-2026-20644

    Last Modified: 16 Apr 2026

    The issue was addressed with improved memory handling. This issue is fixed in Safari 26.3, iOS 18.7.5 and iPadOS 18.7.5, iOS 26.3 and iPadOS 26.3, macOS Tahoe 26.3, visionOS 26.3. Processing maliciously crafted web content may lead to an unexpected process crash.

    Published: 11 Feb 2026
    7.5
    High

    CVE-2026-20652

    Last Modified: 15 Apr 2026

    The issue was addressed with improved memory handling. This issue is fixed in Safari 26.3, iOS 18.7.5 and iPadOS 18.7.5, iOS 26.3 and iPadOS 26.3, macOS Tahoe 26.3, visionOS 26.3. A remote attacker may be able to cause a denial-of-service.

    Published: 11 Feb 2026
    4.6
    Medium

    CVE-2026-20605

    Last Modified: 15 Apr 2026

    The issue was addressed with improved memory handling. This issue is fixed in iOS 18.7.5 and iPadOS 18.7.5, macOS Sequoia 15.7.4, macOS Sonoma 14.8.4, macOS Tahoe 26.3. An app may be able to crash a system process.

    Published: 11 Feb 2026
    5.5
    Medium

    CVE-2026-20625

    Last Modified: 16 Apr 2026

    A parsing issue in the handling of directory paths was addressed with improved path validation. This issue is fixed in macOS Sequoia 15.7.4, macOS Sonoma 14.8.4, macOS Tahoe 26.3, visionOS 26.3. An app may be able to access sensitive user data.

    Published: 11 Feb 2026
    5.5
    Medium

    CVE-2026-20648

    Last Modified: 15 Apr 2026

    A privacy issue was addressed by moving sensitive data to a protected location. This issue is fixed in macOS Tahoe 26.3. A malicious app may be able to access notifications from other iCloud devices.

    Published: 11 Feb 2026