<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>CVE Daily – Lua (High+Critical)</title>
  <link>https://cvedaily.com/pages/tags/lua.html</link>
  <atom:link href="https://cvedaily.com/feed-tags/lua-severe.xml" rel="self" type="application/rss+xml"/>
  <description>CVE Daily – Lua (High+Critical)</description>
  <language>en</language>
  <lastBuildDate>Wed, 03 Jun 2026 21:26:43 +0000</lastBuildDate>
  <item>
    <title>[High] CVE-2026-48126 – Algernon is a small self-contained pure-Go web server. Prior to 1.17.8, when alg...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-48126</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-48126</guid>
    <pubDate>Tue, 26 May 2026 17:16:53 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-48126</strong></p>
  <p>Algernon is a small self-contained pure-Go web server. Prior to 1.17.8, when algernon is started with --domain (or --letsencrypt, which silently turns on --domain at engine/flags.go:372), the request handler resolves the served directory by joining the configured --dir with the value of the client-supplied Host header. The join is performed by filepath.Join with no validation, so a Host: .. heade…</p>
  <p><strong>CVSS:</strong> 8.2 · <strong>CWE:</strong> CWE-22</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-48126">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-45728 – Algernon is a small self-contained pure-Go web server. Prior to 1.17.7, when Alg...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-45728</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-45728</guid>
    <pubDate>Tue, 26 May 2026 17:16:47 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-45728</strong></p>
  <p>Algernon is a small self-contained pure-Go web server. Prior to 1.17.7, when Algernon is invoked with a single file path instead of a directory, singleFileMode is set to true and debugMode is forcibly enabled. debugMode activates the PrettyError renderer, which on any Lua or template error response dumps the absolute path of the file that errored, complete byte contents of that file, and exceptio…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-209</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-45728">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-45721 – Algernon is a small self-contained pure-Go web server. Prior to 1.17.7, when Alg...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-45721</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-45721</guid>
    <pubDate>Tue, 26 May 2026 17:16:47 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-45721</strong></p>
  <p>Algernon is a small self-contained pure-Go web server. Prior to 1.17.7, when Algernon is asked for any URL path that resolves to a directory without an index file, DirPage walks upward through parent directories — past the configured server root — looking for a file named handler.lua to execute as the request handler. The loop terminates only after 100 ancestor steps or when filepath.Dir returns…</p>
  <p><strong>CVSS:</strong> 9.0 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-45721">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-43982 – Algernon is a small self-contained pure-Go web server. Prior to 1.17.6, uploaded...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-43982</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-43982</guid>
    <pubDate>Tue, 26 May 2026 17:16:46 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-43982</strong></p>
  <p>Algernon is a small self-contained pure-Go web server. Prior to 1.17.6, uploadedFileSaveIn() in lua/upload/upload.go uses filepath.Join() with the caller-supplied directory but performs no boundary check after joining. A directory of ../../../tmp resolves cleanly to /tmp, outside the web root. This vulnerability is fixed in 1.17.6.</p>
  <p><strong>CVSS:</strong> 8.7 · <strong>CWE:</strong> CWE-22</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-43982">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-43981 – Algernon is a small self-contained pure-Go web server. Prior to 1.17.6, in engin...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-43981</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-43981</guid>
    <pubDate>Tue, 26 May 2026 17:16:45 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-43981</strong></p>
  <p>Algernon is a small self-contained pure-Go web server. Prior to 1.17.6, in engine/luahandler.go, the sync.RWMutex protecting LoadCommonFunctions is released before L.Push() and L.PCall() execute. Since gopher-lua's LState is explicitly not goroutine-safe, concurrent requests race on the shared state causing Lua VM corruption. The Go race detector confirms this immediately under modest concurrency…</p>
  <p><strong>CVSS:</strong> 8.2 · <strong>CWE:</strong> CWE-362</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-43981">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-44403 – Wing FTP Server before 8.1.3 contains an authenticated remote code execution vul...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-44403</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-44403</guid>
    <pubDate>Tue, 12 May 2026 21:16:16 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-44403</strong></p>
  <p>Wing FTP Server before 8.1.3 contains an authenticated remote code execution vulnerability in the session serialization mechanism that allows authenticated administrators to inject arbitrary Lua code through the domain admin mydirectory field. Attackers can exploit unsafe serialization of session values into Lua source code without proper escaping of closing delimiters, causing the injected code…</p>
  <p><strong>CVSS:</strong> 7.2 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-44403">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-42214 – Notepad Next is a cross-platform, reimplementation of Notepad++. Prior to versio...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-42214</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-42214</guid>
    <pubDate>Thu, 07 May 2026 19:16:01 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-42214</strong></p>
  <p>Notepad Next is a cross-platform, reimplementation of Notepad++. Prior to version 0.14, NotepadNext's detectLanguageFromExtension() function interpolates a file's extension directly into a Lua script without sanitization. An attacker can craft a filename whose extension contains Lua code, which executes automatically when the victim opens the file in NotepadNext. Because luaL_openlibs() is called…</p>
  <p><strong>CVSS:</strong> 7.8 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-42214">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-43584 – OpenClaw before 2026.4.10 contains an insufficient environment variable denylist...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-43584</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-43584</guid>
    <pubDate>Wed, 06 May 2026 20:16:34 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-43584</strong></p>
  <p>OpenClaw before 2026.4.10 contains an insufficient environment variable denylist vulnerability in its exec environment policy that allows operator-supplied overrides of high-risk interpreter startup variables including VIMINIT, EXINIT, LUA_INIT, and HOSTALIASES. Attackers can exploit this by manipulating these environment variables to influence downstream execution behavior or network connectivit…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-184</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-43584">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-23631 – Redis is an in-memory data structure store. In all versions of redis-server with...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-23631</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-23631</guid>
    <pubDate>Tue, 05 May 2026 17:17:03 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-23631</strong></p>
  <p>Redis is an in-memory data structure store. In all versions of redis-server with Lua scripting, an authenticated attacker can exploit the master-replica synchronization mechanism to trigger a use-after-free on replicas where replica-read-only is disabled or can be disabled, which may lead to remote code execution. A workaround is to prevent users from executing Lua scripts or avoid using replicas…</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-416</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-23631">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-41873 – ** UNSUPPORTED WHEN ASSIGNED ** Inconsistent Interpretation of HTTP Requests ('H...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-41873</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-41873</guid>
    <pubDate>Tue, 28 Apr 2026 16:16:13 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-41873</strong></p>
  <p>** UNSUPPORTED WHEN ASSIGNED ** Inconsistent Interpretation of HTTP Requests ('HTTP Request/Response Smuggling') vulnerability in Pony Mail leading to admin account takeover.  This issue affects all versions of the Lua implementation of Pony Mail. There is a Python implementation under development under the name "Pony Mail Foal" that is not affected by this issue, but hasn't been released yet.  A…</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-444</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-41873">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-41246 – Contour is a Kubernetes ingress controller using Envoy proxy. From v1.19.0 to be...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-41246</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-41246</guid>
    <pubDate>Thu, 23 Apr 2026 19:17:29 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-41246</strong></p>
  <p>Contour is a Kubernetes ingress controller using Envoy proxy. From v1.19.0 to before v1.33.4, v1.32.5, and v1.31.6, Contour's Cookie Rewriting feature is vulnerable to Lua code injection. An attacker with RBAC permissions to create or modify HTTPProxy resources can craft a malicious value in spec.routes[].cookieRewritePolicies[].pathRewrite.value or spec.routes[].services[].cookieRewritePolicies[…</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-41246">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-41196 – Luanti (formerly Minetest) is an open source voxel game-creation platform. Start...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-41196</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-41196</guid>
    <pubDate>Thu, 23 Apr 2026 02:16:17 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-41196</strong></p>
  <p>Luanti (formerly Minetest) is an open source voxel game-creation platform. Starting in version 5.0.0 and prior to version 5.15.2, a malicious mod can trivially escape the sandboxed Lua environment to execute arbitrary code and gain full filesystem access on the user's device. This applies to the server-side mod, async and mapgen as well as the client-side (CSM) environments. This vulnerability is…</p>
  <p><strong>CVSS:</strong> 10.0 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-41196">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-40959 – Luanti 5 before 5.15.2, when LuaJIT is used, allows a Lua sandbox escape via a c...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-40959</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-40959</guid>
    <pubDate>Thu, 16 Apr 2026 01:16:11 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-40959</strong></p>
  <p>Luanti 5 before 5.15.2, when LuaJIT is used, allows a Lua sandbox escape via a crafted mod.</p>
  <p><strong>CVSS:</strong> 9.3 · <strong>CWE:</strong> CWE-829</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-40959">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-34444 – Lupa integrates the runtimes of Lua or LuaJIT2 into CPython. In 2.6 and earlier,...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-34444</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-34444</guid>
    <pubDate>Mon, 06 Apr 2026 16:16:35 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-34444</strong></p>
  <p>Lupa integrates the runtimes of Lua or LuaJIT2 into CPython. In 2.6 and earlier, attribute_filter is not consistently applied when attributes are accessed through built-in functions like getattr and setattr. This allows an attacker to bypass the intended restrictions and eventually achieve arbitrary code execution.</p>
  <p><strong>CVSS:</strong> 10.0 · <strong>CWE:</strong> CWE-284</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-34444">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-35093 – A flaw was found in libinput. A local attacker who can place a specially crafted...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-35093</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-35093</guid>
    <pubDate>Wed, 01 Apr 2026 14:16:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-35093</strong></p>
  <p>A flaw was found in libinput. A local attacker who can place a specially crafted Lua bytecode file in certain system or user configuration directories can bypass security restrictions. This allows the attacker to run unauthorized code with the same permissions as the program using libinput, such as a graphical compositor. This could lead to the attacker monitoring keyboard input and sending that…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-35093">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-4745 – Improper Control of Generation of Code ('Code Injection') vulnerability in dendi...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-4745</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-4745</guid>
    <pubDate>Tue, 24 Mar 2026 05:16:25 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-4745</strong></p>
  <p>Improper Control of Generation of Code ('Code Injection') vulnerability in dendibakh perf-ninja (labs/misc/pgo/lua modules). This vulnerability is associated with program files ldo.C.  This issue affects perf-ninja.</p>
  <p><strong>CVSS:</strong> 10.0 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-4745">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-4558 – A flaw has been found in Linksys MR9600 2.0.6.206937. Affected is the function s...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-4558</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-4558</guid>
    <pubDate>Sun, 22 Mar 2026 18:16:06 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-4558</strong></p>
  <p>A flaw has been found in Linksys MR9600 2.0.6.206937. Affected is the function smartConnectConfigure of the file SmartConnect.lua. Executing a manipulation of the argument configApSsid/configApPassphrase/srpLogin/srpPassword can lead to os command injection. The attack may be launched remotely. The exploit has been published and may be used. The vendor was contacted early about this disclosure bu…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-77</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-4558">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-32298 – The Angeet ES3 KVM does not properly sanitize user-supplied variables parsed by ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-32298</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-32298</guid>
    <pubDate>Tue, 17 Mar 2026 18:16:17 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-32298</strong></p>
  <p>The Angeet ES3 KVM does not properly sanitize user-supplied variables parsed by the 'cfg.lua' script, allowing an authenticated attacker to execute OS-level commands.</p>
  <p><strong>CVSS:</strong> 9.1 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-32298">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-2331 – An attacker may perform unauthenticated read and write operations on sensitive f...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-2331</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-2331</guid>
    <pubDate>Fri, 06 Mar 2026 08:16:27 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-2331</strong></p>
  <p>An attacker may perform unauthenticated read and write operations on sensitive filesystem areas via the AppEngine Fileaccess over HTTP due to improper access restrictions. A critical filesystem directory was unintentionally exposed through the HTTP-based file access feature, allowing access without authentication. This includes device parameter files, enabling an attacker to read and modify appli…</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-552</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-2331">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-20100 – A vulnerability in the LUA interperter of the Remote Access SSL VPN feature of C...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-20100</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-20100</guid>
    <pubDate>Wed, 04 Mar 2026 18:16:24 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-20100</strong></p>
  <p>A vulnerability in the LUA interperter of the Remote Access SSL VPN feature of Cisco Secure Firewall Adaptive Security Appliance (ASA) Software and Secure Firewall Threat Defense (FTD) Software could allow an authenticated, remote attacker with a valid VPN connection to cause the device to reload unexpectedly, resulting in a denial of service (DoS) condition. This does not affect the management o…</p>
  <p><strong>CVSS:</strong> 7.7 · <strong>CWE:</strong> CWE-120</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-20100">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-67733 – Valkey is a distributed key-value database. Prior to versions 9.0.2, 8.1.6, 8.0...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-67733</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-67733</guid>
    <pubDate>Mon, 23 Feb 2026 20:28:53 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-67733</strong></p>
  <p>Valkey is a distributed key-value database. Prior to versions 9.0.2, 8.1.6, 8.0.7, and 7.2.12, a malicious user can use scripting commands to inject arbitrary information into the response stream for the given client, potentially corrupting or returning tampered data to other users on the same connection. The error handling code for lua scripts does not properly handle null characters. Versions 9…</p>
  <p><strong>CVSS:</strong> 8.5 · <strong>CWE:</strong> CWE-74</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-67733">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-22208 – OpenS100 (the reference implementation S-100 viewer) prior to commit 753cf29 con...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-22208</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-22208</guid>
    <pubDate>Tue, 17 Feb 2026 15:16:22 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-22208</strong></p>
  <p>OpenS100 (the reference implementation S-100 viewer) prior to commit 753cf29 contains a remote code execution vulnerability via an unrestricted Lua interpreter. The Portrayal Engine initializes Lua using luaL_openlibs() without sandboxing or capability restrictions, exposing standard libraries such as 'os' and 'io' to untrusted portrayal catalogues. An attacker can provide a malicious S-100 portr…</p>
  <p><strong>CVSS:</strong> 9.6 · <strong>CWE:</strong> CWE-749</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-22208">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-1802 – A security flaw has been discovered in Ziroom ZHOME A0101 1.0.1.0. This issue af...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-1802</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-1802</guid>
    <pubDate>Tue, 03 Feb 2026 19:16:16 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-1802</strong></p>
  <p>A security flaw has been discovered in Ziroom ZHOME A0101 1.0.1.0. This issue affects the function macAddrClone of the file luci\controller\api\zrMacClone.lua. The manipulation of the argument macType results in command injection. The attack may be launched remotely. The exploit has been released to the public and may be used for attacks. The vendor was contacted early about this disclosure but d…</p>
  <p><strong>CVSS:</strong> 7.3 · <strong>CWE:</strong> CWE-74</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-1802">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2020-37032 – Wing FTP Server 6.3.8 contains a remote code execution vulnerability in its Lua-...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2020-37032</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2020-37032</guid>
    <pubDate>Fri, 30 Jan 2026 23:16:08 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2020-37032</strong></p>
  <p>Wing FTP Server 6.3.8 contains a remote code execution vulnerability in its Lua-based web console that allows authenticated users to execute system commands. Attackers can leverage the console to send POST requests with malicious commands that trigger operating system execution through the os.execute() function.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2020-37032">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-24821 – Out-of-bounds Read vulnerability in turanszkij WickedEngine (WickedEngine/LUA mo...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-24821</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-24821</guid>
    <pubDate>Tue, 27 Jan 2026 09:15:52 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-24821</strong></p>
  <p>Out-of-bounds Read vulnerability in turanszkij WickedEngine (WickedEngine/LUA modules). This vulnerability is associated with program files lparser.C.  This issue affects WickedEngine: through 0.71.727.</p>
  <p><strong>CVSS:</strong> 9.3 · <strong>CWE:</strong> CWE-125</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-24821">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-24817 – Out-of-bounds Write vulnerability in praydog UEVR (dependencies/lua/src modules)...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-24817</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-24817</guid>
    <pubDate>Tue, 27 Jan 2026 09:15:52 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-24817</strong></p>
  <p>Out-of-bounds Write vulnerability in praydog UEVR (dependencies/lua/src modules). This vulnerability is associated with program files ldebug.C, lvm.C.  This issue affects UEVR: before 1.05.</p>
  <p><strong>CVSS:</strong> 8.7 · <strong>CWE:</strong> CWE-787</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-24817">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-23742 – Skipper is an HTTP router and reverse proxy for service composition. The default...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-23742</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-23742</guid>
    <pubDate>Fri, 16 Jan 2026 20:15:51 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-23742</strong></p>
  <p>Skipper is an HTTP router and reverse proxy for service composition. The default skipper configuration before 0.23.0 was -lua-sources=inline,file. The problem starts if untrusted users can create lua filters, because of -lua-sources=inline , for example through a Kubernetes Ingress resource. The configuration inline allows these user to create a script that is able to read the filesystem accessib…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-23742">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2022-50934 – Wing FTP Server versions 4.3.8 and below contain an authenticated remote code ex...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2022-50934</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2022-50934</guid>
    <pubDate>Tue, 13 Jan 2026 23:15:58 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2022-50934</strong></p>
  <p>Wing FTP Server versions 4.3.8 and below contain an authenticated remote code execution vulnerability that allows attackers to execute arbitrary PowerShell commands through the admin interface. Attackers can leverage a crafted Lua script payload with base64-encoded PowerShell to establish a reverse TCP shell by authenticating and sending a malicious request to the admin panel.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2022-50934">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2022-50909 – Algo 8028 Control Panel version 3.3.3 contains a command injection vulnerability...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2022-50909</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2022-50909</guid>
    <pubDate>Tue, 13 Jan 2026 23:15:53 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2022-50909</strong></p>
  <p>Algo 8028 Control Panel version 3.3.3 contains a command injection vulnerability in the fm-data.lua endpoint that allows authenticated attackers to execute arbitrary commands. Attackers can exploit the insecure 'source' parameter by injecting commands that are executed with root privileges, enabling remote code execution through a crafted POST request.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2022-50909">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-22771 – Envoy Gateway is an open source project for managing Envoy Proxy as a standalone...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-22771</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-22771</guid>
    <pubDate>Mon, 12 Jan 2026 19:16:03 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-22771</strong></p>
  <p>Envoy Gateway is an open source project for managing Envoy Proxy as a standalone or Kubernetes-based application gateway. Prior to 1.5.7 and 1.6.2, EnvoyExtensionPolicy Lua scripts executed by Envoy proxy can be used to leak the proxy's credentials. These credentials can then be used to communicate with the control plane and gain access to all secrets that are used by Envoy proxy, e.g. TLS privat…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-22771">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56130 – OS Command Injection vulnerability in Ruijie RG-S1930 S1930SWITCH_3.0(1)B11P230 ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56130</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56130</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:58 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56130</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-S1930 S1930SWITCH_3.0(1)B11P230 allowing attackers to execute arbitrary commands via a crafted POST request to the module_update in file /usr/local/lua/dev_config/ace_sw.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56130">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56129 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56129</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56129</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:58 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56129</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers to execute arbitrary commands via a crafted POST request to the action_diagnosis in file /usr/lib/lua/luci/controller/admin/diagnosis.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56129">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56127 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attacker...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56127</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56127</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56127</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attackers to execute arbitrary commands via a crafted POST request to the get_wanobj in file /usr/lib/lua/luci/controller/admin/common.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56127">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56124 – OS Command Injection vulnerability in Ruijie X60 PRO X60_10212014RG-X60 PRO V1.0...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56124</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56124</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56124</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X60 PRO X60_10212014RG-X60 PRO V1.00/V2.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 7.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56124">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56123 – OS Command Injection vulnerability in Ruijie RG-EW1200G PRO RG-EW1200G PRO V1.00...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56123</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56123</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56123</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1200G PRO RG-EW1200G PRO V1.00/V2.00/V3.00/V4.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56123">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56122 – OS Command Injection vulnerability in Ruijie RG-EW1800GX PRO B11P226_EW1800GX-PR...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56122</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56122</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56122</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1800GX PRO B11P226_EW1800GX-PRO_10223117 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56122">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56120 – OS Command Injection vulnerability in Ruijie X60 PRO X60_10212014RG-X60 PRO V1.0...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56120</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56120</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56120</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X60 PRO X60_10212014RG-X60 PRO V1.00/V2.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_config/config_retain.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56120">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56118 – OS Command Injection vulnerability in Ruijie X60 PRO X60_10212014RG-X60 PRO V1.0...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56118</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56118</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56118</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X60 PRO X60_10212014RG-X60 PRO V1.00/V2.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_sta/nbr_cwmp.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56118">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56117 – OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowin...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56117</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56117</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56117</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_sta/nbr_cwmp.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56117">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56114 – OS Command Injection vulnerability in Ruijie M18 EW_3.0(1)B11P226_M18_10223116 a...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56114</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56114</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:57 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56114</strong></p>
  <p>OS Command Injection vulnerability in Ruijie M18 EW_3.0(1)B11P226_M18_10223116 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_config/config_retain.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56114">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56113 – OS Command Injection vulnerability in Ruijie RG-YST EST, YSTAP_3.0(1)B11P280YST2...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56113</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56113</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56113</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-YST EST, YSTAP_3.0(1)B11P280YST250F V1.xxV2.xx allowing attackers to execute arbitrary commands via a crafted POST request to the pwdmodify in file /usr/lib/lua/luci/modules/common.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56113">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56111 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56111</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56111</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56111</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers to execute arbitrary commands via a crafted POST request to the network_set_wan_conf in file /usr/lib/lua/luci/controller/admin/netport.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56111">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56110 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56110</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56110</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56110</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers to execute arbitrary commands via a crafted POST request to the action_deal_update in file /usr/lib/lua/luci/controller/api/rcmsAPI.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56110">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56109 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56109</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56109</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56109</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers to execute arbitrary commands via a crafted POST request to the action_wireless in file /usr/lib/lua/luci/control/admin/wireless.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56109">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56108 – OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowin...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56108</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56108</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56108</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowing attackers to execute arbitrary commands via a crafted POST request to the pwdmodify in file /usr/lib/lua/luci/modules/common.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56108">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56107 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attacker...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56107</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56107</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56107</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attackers to execute arbitrary commands via a crafted POST request to the submit_wifi in file /usr/lib/lua/luci/controller/admin/common_quick_config.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56107">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56106 – OS Command Injection vulnerability in Ruijie RG-EW1800GX B11P226_EW1800GX_102231...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56106</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56106</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56106</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1800GX B11P226_EW1800GX_10223121 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_sta/nbr_cwmp.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56106">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56102 – OS Command Injection vulnerability in Ruijie RG-EW1800GX B11P226_EW1800GX_102231...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56102</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56102</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56102</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1800GX B11P226_EW1800GX_10223121 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56102">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56101 – OS Command Injection vulnerability in Ruijie M18 EW_3.0(1)B11P226_M18_10223116 a...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56101</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56101</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56101</strong></p>
  <p>OS Command Injection vulnerability in Ruijie M18 EW_3.0(1)B11P226_M18_10223116 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56101">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56099 – OS Command Injection vulnerability in Ruijie RG-YST AP_3.0(1)B11P280YST250F allo...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56099</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56099</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56099</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-YST AP_3.0(1)B11P280YST250F allowing attackers to execute arbitrary commands via a crafted POST request to the pwdmodify in file /usr/lib/lua/luci/modules/common.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56099">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56098 – OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowin...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56098</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56098</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56098</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56098">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56097 – OS Command Injection vulnerability in Ruijie RG-EW1800GX PRO B11P226_EW1800GX-PR...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56097</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56097</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56097</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1800GX PRO B11P226_EW1800GX-PRO_10223117 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_config/config_retain.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56097">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56096 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attacker...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56096</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56096</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56096</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attackers to execute arbitrary commands via a crafted POST request to the restart_modules in file /usr/lib/lua/luci/controller/admin/common.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56096">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56095 – OS Command Injection vulnerability in Ruijie RG-EW1200G PRO RG-EW1200G PRO V1.00...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56095</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56095</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56095</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1200G PRO RG-EW1200G PRO V1.00/V2.00/V3.00/V4.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_sta/nbr_cwmp.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56095">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56094 – OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowin...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56094</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56094</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56094</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/host_access_delay.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56094">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56093 – OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowin...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56093</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56093</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56093</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowing attackers to execute arbitrary commands via a crafted POST request to the setWisp in file /usr/lib/lua/luci/modules/wireless.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56093">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56092 – OS Command Injection vulnerability in Ruijie X30 PRO V1 X30-PRO-V1_09241521 allo...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56092</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56092</guid>
    <pubDate>Thu, 11 Dec 2025 19:15:55 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56092</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X30 PRO V1 X30-PRO-V1_09241521 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56092">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56091 – OS Command Injection vulnerability in Ruijie RG-EW1800GX B11P226_EW1800GX_102231...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56091</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56091</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:21 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56091</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1800GX B11P226_EW1800GX_10223121 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_config/config_retain.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56091">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56090 – OS Command Injection vulnerability in Ruijie RG-EW1200G PRO RG-EW1200G PRO V1.00...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56090</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56090</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:21 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56090</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1200G PRO RG-EW1200G PRO V1.00/V2.00/V3.00/V4.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_config/config_retain.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56090">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56089 – OS Command Injection vulnerability in Ruijie M18 EW_3.0(1)B11P226_M18_10223116 a...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56089</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56089</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:21 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56089</strong></p>
  <p>OS Command Injection vulnerability in Ruijie M18 EW_3.0(1)B11P226_M18_10223116 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_sta/nbr_cwmp.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56089">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56088 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56088</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56088</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56088</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR860 allowing attackers to execute arbitrary commands via a crafted POST request to the action_service in file /usr/lib/lua/luci/controller/admin/service.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56088">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56087 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attacker...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56087</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56087</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56087</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attackers to execute arbitrary commands via a crafted POST request to the run_tcpdump in file /usr/lib/lua/luci/controller/admin/common_tcpdump.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56087">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56086 – OS Command Injection vulnerability in Ruijie RG-EW1200 EW_3.0(1)B11P227_EW1200_1...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56086</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56086</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56086</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1200 EW_3.0(1)B11P227_EW1200_11130208RG-EW1200 V1.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56086">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56085 – OS Command Injection vulnerability in Ruijie RG-EW1200 EW_3.0(1)B11P227_EW1200_1...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56085</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56085</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56085</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1200 EW_3.0(1)B11P227_EW1200_11130208RG-EW1200 V1.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_config/config_retain.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56085">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56084 – OS Command Injection vulnerability in Ruijie RG-EW1800GX PRO B11P226_EW1800GX-PR...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56084</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56084</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56084</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1800GX PRO B11P226_EW1800GX-PRO_10223117 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_sta/nbr_cwmp.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56084">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56083 – OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowin...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56083</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56083</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56083</strong></p>
  <p>OS Command Injection vulnerability in Ruijie X30-PRO X30-PRO-V1_09241521 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_sta/nbr_networkId_merge.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56083">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56082 – OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attacker...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56082</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56082</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56082</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-BCR RG-BCR600W allowing attackers to execute arbitrary commands via a crafted POST request to the check_changes in file /usr/lib/lua/luci/controller/admin/common.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56082">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56079 – OS Command Injection vulnerability in Ruijie RG-EW1300G EW1300G V1.00/V2.00/V4.0...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56079</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56079</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56079</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-EW1300G EW1300G V1.00/V2.00/V4.00 allowing attackers to execute arbitrary commands via a crafted POST request to the module_get in file /usr/local/lua/dev_sta/networkConnect.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56079">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-56077 – OS Command Injection vulnerability in Ruijie RG-RAP2200(E) 247 2200 allowing att...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-56077</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-56077</guid>
    <pubDate>Thu, 11 Dec 2025 18:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-56077</strong></p>
  <p>OS Command Injection vulnerability in Ruijie RG-RAP2200(E) 247 2200 allowing attackers to execute arbitrary commands via a crafted POST request to the module_set in file /usr/local/lua/dev_sta/nbr_cwmp.lua.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-56077">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-64344 – Suricata is a network IDS, IPS and NSM engine developed by the OISF (Open Inform...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-64344</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-64344</guid>
    <pubDate>Wed, 26 Nov 2025 23:15:49 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-64344</strong></p>
  <p>Suricata is a network IDS, IPS and NSM engine developed by the OISF (Open Information Security Foundation) and the Suricata community. Prior to versions 7.0.13 and 8.0.2, working with large buffers in Lua scripts can lead to a stack overflow. Users of Lua rules and output scripts may be affected when working with large buffers. This includes a rule passing a large buffer to a Lua script. This iss…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-121</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-64344">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-12121 – Lite XL versions 2.1.8 and prior contain a vulnerability in the system.exec func...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-12121</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-12121</guid>
    <pubDate>Thu, 20 Nov 2025 17:15:48 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-12121</strong></p>
  <p>Lite XL versions 2.1.8 and prior contain a vulnerability in the system.exec function, which allowed arbitrary command execution through unsanitized shell command construction. This function was used in project directory launching (core.lua), drag-and-drop file handling (rootview.lua), and the “open in system” command in the treeview plugin (treeview.lua). If an attacker could influence input to s…</p>
  <p><strong>CVSS:</strong> 7.3 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-12121">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-12120 – Lite XL versions 2.1.8 and prior automatically execute the .lite_project.lua fil...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-12120</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-12120</guid>
    <pubDate>Thu, 20 Nov 2025 17:15:48 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-12120</strong></p>
  <p>Lite XL versions 2.1.8 and prior automatically execute the .lite_project.lua file when opening a project directory, without prompting the user for confirmation. The .lite_project.lua file is intended for project-specific configuration but can contain executable Lua logic. This behavior could allow execution of untrusted Lua code if a user opens a malicious project, potentially leading to arbitrar…</p>
  <p><strong>CVSS:</strong> 7.3 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-12120">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2018-25117 – VestaCP commit a3f0fa1 (2018-05-31) up to commit ee03eff (2018-06-13) contain em...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2018-25117</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2018-25117</guid>
    <pubDate>Wed, 15 Oct 2025 02:15:31 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2018-25117</strong></p>
  <p>VestaCP commit a3f0fa1 (2018-05-31) up to commit ee03eff (2018-06-13) contain embedded malicious code that resulted in a supply-chain compromise. New installations created from the compromised installer since at least May 2018 were subject to installation of Linux/ChachaDDoS, a multi-stage DDoS bot that uses Lua for second- and third-stage components. The compromise leaked administrative credenti…</p>
  <p><strong>CVSS:</strong> 9.3 · <strong>CWE:</strong> CWE-506</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2018-25117">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-49844 – Redis is an open source, in-memory database that persists on disk. Versions 8.2...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-49844</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-49844</guid>
    <pubDate>Fri, 03 Oct 2025 20:15:32 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-49844</strong></p>
  <p>Redis is an open source, in-memory database that persists on disk. Versions 8.2.1 and below allow an authenticated user to use a specially crafted Lua script to manipulate the garbage collector, trigger a use-after-free and potentially lead to remote code execution. The problem exists in all versions of Redis with Lua scripting. This issue is fixed in version 8.2.2. To workaround this issue witho…</p>
  <p><strong>CVSS:</strong> 9.9 · <strong>CWE:</strong> CWE-416</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-49844">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-46817 – Redis is an open source, in-memory database that persists on disk. Versions 8.2...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-46817</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-46817</guid>
    <pubDate>Fri, 03 Oct 2025 18:15:35 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-46817</strong></p>
  <p>Redis is an open source, in-memory database that persists on disk. Versions 8.2.1 and below allow an authenticated user to use a specially crafted Lua script to cause an integer overflow and potentially lead to remote code execution The problem exists in all versions of Redis with Lua scripting. This issue is fixed in version 8.2.2.</p>
  <p><strong>CVSS:</strong> 7.0 · <strong>CWE:</strong> CWE-190</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-46817">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-57439 – Creacast Creabox Manager 4.4.4 contains a critical Remote Code Execution vulnera...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-57439</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-57439</guid>
    <pubDate>Mon, 22 Sep 2025 18:15:45 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-57439</strong></p>
  <p>Creacast Creabox Manager 4.4.4 contains a critical Remote Code Execution vulnerability accessible via the edit.php endpoint. An authenticated attacker can inject arbitrary Lua code into the configuration, which is then executed on the server. This allows full system compromise, including reverse shell execution or arbitrary command execution.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-57439">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-57430 – Creacast Creabox Manager 4.4.4 exposes sensitive configuration data via a public...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-57430</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-57430</guid>
    <pubDate>Mon, 22 Sep 2025 16:15:44 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-57430</strong></p>
  <p>Creacast Creabox Manager 4.4.4 exposes sensitive configuration data via a publicly accessible endpoint /get. When accessed, this endpoint returns internal configuration including the creacodec.lua file, which contains plaintext admin credentials.</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-57430">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-22470 – CL4/6NX Plus and CL4/6NX-J Plus (Japan model) with the firmware versions prior t...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-22470</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-22470</guid>
    <pubDate>Wed, 06 Aug 2025 10:15:35 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-22470</strong></p>
  <p>CL4/6NX Plus and CL4/6NX-J Plus (Japan model) with the firmware versions prior to 1.15.5-r1 allow crafted dangerous files to be uploaded. An arbitrary Lua script may be executed on the system with the root privilege.</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-434</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-22470">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-41688 – A high privileged remote attacker can execute arbitrary OS commands using an und...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-41688</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-41688</guid>
    <pubDate>Thu, 31 Jul 2025 10:15:26 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-41688</strong></p>
  <p>A high privileged remote attacker can execute arbitrary OS commands using an undocumented method allowing to escape the implemented LUA sandbox.</p>
  <p><strong>CVSS:</strong> 7.2 · <strong>CWE:</strong> CWE-653</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-41688">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-34095 – An OS command injection vulnerability exists in Mako Server versions 2.5 and 2.6...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-34095</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-34095</guid>
    <pubDate>Thu, 10 Jul 2025 20:15:24 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-34095</strong></p>
  <p>An OS command injection vulnerability exists in Mako Server versions 2.5 and 2.6, specifically within the tutorial interface provided by the examples/save.lsp endpoint. An unauthenticated attacker can send a crafted PUT request containing arbitrary Lua os.execute() code, which is then persisted on disk and triggered via a subsequent GET request to examples/manage.lsp. This allows remote command e…</p>
  <p><strong>CVSS:</strong> 9.3 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-34095">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-47812 – In Wing FTP Server before 7.4.4. the user and admin web interfaces mishandle '\0...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-47812</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-47812</guid>
    <pubDate>Thu, 10 Jul 2025 17:15:47 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-47812</strong></p>
  <p>In Wing FTP Server before 7.4.4. the user and admin web interfaces mishandle '\0' bytes, ultimately allowing injection of arbitrary Lua code into user session files. This can be used to execute arbitrary system commands with the privileges of the FTP service (root or SYSTEM by default). This is thus a remote code execution vulnerability that guarantees a total server compromise. This is also expl…</p>
  <p><strong>CVSS:</strong> 10.0 · <strong>CWE:</strong> CWE-158</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-47812">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-52939 – Out-of-bounds Write vulnerability in dail8859 NotepadNext (src/lua/src modules)...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-52939</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-52939</guid>
    <pubDate>Mon, 23 Jun 2025 10:15:28 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-52939</strong></p>
  <p>Out-of-bounds Write vulnerability in dail8859 NotepadNext (src/lua/src modules). This vulnerability is associated with program files ldebug.C, lvm.C.  This issue affects NotepadNext: through v0.11.</p>
  <p><strong>CVSS:</strong> 9.4 · <strong>CWE:</strong> CWE-787</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-52939">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-52935 – Integer Overflow or Wraparound vulnerability in dragonflydb dragonfly (src/redis...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-52935</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-52935</guid>
    <pubDate>Mon, 23 Jun 2025 10:15:27 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-52935</strong></p>
  <p>Integer Overflow or Wraparound vulnerability in dragonflydb dragonfly (src/redis/lua/struct modules). This vulnerability is associated with program files lua_struct.C.  This issue affects dragonfly: 1.30.1, 1.30.0, 1.28.18.</p>
  <p><strong>CVSS:</strong> 9.4 · <strong>CWE:</strong> CWE-190</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-52935">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2024-33452 – An issue in OpenResty lua-nginx-module v.0.10.26 and before allows a remote atta...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-33452</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-33452</guid>
    <pubDate>Tue, 22 Apr 2025 16:15:44 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2024-33452</strong></p>
  <p>An issue in OpenResty lua-nginx-module v.0.10.26 and before allows a remote attacker to conduct HTTP request smuggling via a crafted HEAD request.</p>
  <p><strong>CVSS:</strong> 7.7 · <strong>CWE:</strong> CWE-444</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-33452">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26378 – A CWE-862 "Missing Authorization" in maxprofile/users/routes.lua in Q-Free MaxTi...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26378</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26378</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:39 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26378</strong></p>
  <p>A CWE-862 "Missing Authorization" in maxprofile/users/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated (low-privileged) attacker to reset passwords, including the ones of administrator accounts, via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26378">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26377 – A CWE-862 "Missing Authorization" in maxprofile/users/routes.lua in Q-Free MaxTi...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26377</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26377</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:38 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26377</strong></p>
  <p>A CWE-862 "Missing Authorization" in maxprofile/users/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated (low-privileged) attacker to remove users via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26377">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26375 – A CWE-862 "Missing Authorization" in maxprofile/users/routes.lua in Q-Free MaxTi...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26375</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26375</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:38 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26375</strong></p>
  <p>A CWE-862 "Missing Authorization" in maxprofile/users/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated (low-privileged) attacker to create users with arbitrary privileges via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26375">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26372 – A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26372</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26372</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:38 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26372</strong></p>
  <p>A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated (low-privileged) attacker to remove users from groups via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 7.1 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26372">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26371 – A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26371</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26371</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:38 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26371</strong></p>
  <p>A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated (low-privileged) attacker to add users to groups via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26371">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26370 – A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26370</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26370</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:37 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26370</strong></p>
  <p>A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated (low-privileged) attacker to remove privileges from user groups via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 7.1 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26370">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26369 – A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26369</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26369</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:37 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26369</strong></p>
  <p>A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated (low-privileged) attacker to add privileges to user groups via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26369">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26368 – A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26368</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26368</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:37 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26368</strong></p>
  <p>A CWE-862 "Missing Authorization" in maxprofile/user-groups/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated (low-privileged) attacker to remove user groups via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26368">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26366 – A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/rou...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26366</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26366</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:37 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26366</strong></p>
  <p>A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an unauthenticated remote attacker to disable front panel authentication via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-306</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26366">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26365 – A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/rou...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26365</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26365</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:37 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26365</strong></p>
  <p>A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an unauthenticated remote attacker to enable front panel authentication via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-306</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26365">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26364 – A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/rou...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26364</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26364</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:37 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26364</strong></p>
  <p>A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an unauthenticated remote attacker to disable an authentication profile server via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-306</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26364">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26363 – A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/rou...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26363</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26363</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:36 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26363</strong></p>
  <p>A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an unauthenticated remote attacker to enable an authentication profile server via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-306</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26363">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26362 – A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/rou...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26362</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26362</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:36 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26362</strong></p>
  <p>A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an unauthenticated remote attacker to set an arbitrary authentication profile server via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-306</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26362">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-26361 – A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/rou...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26361</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26361</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:36 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-26361</strong></p>
  <p>A CWE-306 "Missing Authentication for Critical Function" in maxprofile/setup/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an unauthenticated remote attacker to factory reset the device via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 9.1 · <strong>CWE:</strong> CWE-306</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26361">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-26359 – A CWE-306 "Missing Authentication for Critical Function" in maxprofile/accounts/...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26359</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26359</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:36 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-26359</strong></p>
  <p>A CWE-306 "Missing Authentication for Critical Function" in maxprofile/accounts/routes.lua in Q-Free MaxTime less than or equal to version 2.11.0 allows an unauthenticated remote attacker to reset user PINs via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-306</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26359">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-26356 – A CWE-35 "Path Traversal" in maxtime/api/database/database.lua (setActive endpoi...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-26356</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-26356</guid>
    <pubDate>Wed, 12 Feb 2025 14:15:36 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-26356</strong></p>
  <p>A CWE-35 "Path Traversal" in maxtime/api/database/database.lua (setActive endpoint) in Q-Free MaxTime less than or equal to version 2.11.0 allows an authenticated remote attacker to overwrite sensitive files via crafted HTTP requests.</p>
  <p><strong>CVSS:</strong> 7.2 · <strong>CWE:</strong> CWE-35</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-26356">View on NVD</a></p>
]]>
    </description>
  </item>
</channel>
</rss>
