CVE Feed

    Dashboard / CVE

    8.1
    High

    CVE-2025-43715

    Last Modified: 15 Apr 2026

    Nullsoft Scriptable Install System (NSIS) before 3.11 on Windows allows local users to escalate privileges to SYSTEM during an installation, because the temporary plugins directory is created under %WINDIR%\temp and unprivileged users can place a crafted executable file by winning a race condition. This occurs because EW_CREATEDIR does not always set the CreateRestrictedDirectory error flag.

    Published: 17 Apr 2025
    6.2
    Medium

    CVE-2025-29316

    Last Modified: 15 Apr 2026

    An issue in DataPatrol Screenshot watermark, printing watermark agent v.3.5.2.0 allows a physically proximate attacker to obtain sensitive information. NOTE: the Supplier disputes the Print Job Watermark Bypass claim because the watermark is added by hooking into the OS printing mechanism, and thus is not supposed to be visible when previewing a "generated printout" on screen. The Supplier disputes the Screenshot Watermark Bypass claim because the product's documentation explains the step of setting Developer Tools to Disallowed through AD Group Policy.

    Published: 17 Apr 2025
    8.8
    High

    CVE-2021-47670

    Last Modified: 4 Aug 2026

    In the Linux kernel, the following vulnerability has been resolved: can: peak_usb: fix use after free bugs After calling peak_usb_netif_rx_ni(skb), dereferencing skb is unsafe. Especially, the can_frame cf which aliases skb memory is accessed after the peak_usb_netif_rx_ni(). Reordering the lines solves the issue.

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2024-53924

    Last Modified: 11 Jul 2025

    Pycel through 1.0b30, when operating on an untrusted spreadsheet, allows code execution via a crafted formula in a cell, such as one beginning with the =IF(A1=200, eval("__import__('os').system( substring.

    Published: 17 Apr 2025
    3.3
    Low

    CVE-2025-26268

    Last Modified: 25 Apr 2025

    DragonflyDB Dragonfly before 1.27.0 allows authenticated users to cause a denial of service (daemon crash) via a crafted Redis command. The validity of the scan cursor was not checked.

    Published: 17 Apr 2025
    7.8
    High

    CVE-2021-47669

    Last Modified: 4 May 2025

    In the Linux kernel, the following vulnerability has been resolved: can: vxcan: vxcan_xmit: fix use after free bug After calling netif_rx_ni(skb), dereferencing skb is unsafe. Especially, the canfd_frame cfd which aliases skb memory is accessed after the netif_rx_ni().

    Published: 17 Apr 2025
    7.2
    High

    CVE-2025-29039

    Last Modified: 25 Apr 2025

    An issue in dlink DIR 832x 240802 allows a remote attacker to execute arbitrary code via the function 0x41dda8

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29046

    Last Modified: 30 Apr 2025

    Buffer Overflow vulnerability inALFA WiFi CampPro router ALFA_CAMPRO-co-2.29 allows a remote attacker to execute arbitrary code via the GAPSMinute3 key value

    Published: 17 Apr 2025
    6.5
    Medium

    CVE-2025-29449

    Last Modified: 25 Apr 2025

    An issue in twonav v.2.1.18-20241105 allows a remote attacker to obtain sensitive information via the link identification function.

    Published: 17 Apr 2025
    7.6
    High

    CVE-2025-29451

    Last Modified: 23 Apr 2025

    An issue in Seo Panel 4.11.0 allows a remote attacker to obtain sensitive information via the Mail Setting component.

    Published: 17 Apr 2025
    6.5
    Medium

    CVE-2025-29453

    Last Modified: 22 Apr 2025

    An issue in personal-management-system Personal Management System 1.4.65 allows a remote attacker to obtain sensitive information via the my-contacts-settings component.

    Published: 17 Apr 2025
    6.5
    Medium

    CVE-2025-29455

    Last Modified: 22 Apr 2025

    An issue in personal-management-system Personal Management System 1.4.65 allows a remote attacker to obtain sensitive information via the Travel Ideas" function.

    Published: 17 Apr 2025
    7.6
    High

    CVE-2025-29458

    Last Modified: 24 Apr 2025

    An issue in MyBB 1.8.38 allows a remote attacker to obtain sensitive information via the Change Avatar function. NOTE: the Supplier disputes this because of the allowed actions of Board administrators and because of SSRF mitigation.

    Published: 17 Apr 2025
    3.3
    Low

    CVE-2021-47671

    Last Modified: 4 May 2025

    In the Linux kernel, the following vulnerability has been resolved: can: etas_es58x: es58x_rx_err_msg(): fix memory leak in error path In es58x_rx_err_msg(), if can->do_set_mode() fails, the function directly returns without calling netif_rx(skb). This means that the skb previously allocated by alloc_can_err_skb() is not freed. In other terms, this is a memory leak. This patch simply removes the return statement in the error branch and let the function continue. Issue was found with GCC -fanalyzer, please follow the link below for details.

    Published: 17 Apr 2025
    2.9
    Low

    CVE-2025-32415

    Last Modified: 3 Nov 2025

    In libxml2 before 2.13.8 and 2.14.x before 2.14.2, xmlSchemaIDCFillNodeTables in xmlschemas.c has a heap-based buffer under-read. To exploit this, a crafted XML document must be validated against an XML schema with certain identity constraints, or a crafted XML schema must be used.

    Published: 17 Apr 2025
    5.5
    Medium

    CVE-2020-36789

    Last Modified: 1 Oct 2025

    In the Linux kernel, the following vulnerability has been resolved: can: dev: can_get_echo_skb(): prevent call to kfree_skb() in hard IRQ context If a driver calls can_get_echo_skb() during a hardware IRQ (which is often, but not always, the case), the 'WARN_ON(in_irq)' in net/core/skbuff.c#skb_release_head_state() might be triggered, under network congestion circumstances, together with the potential risk of a NULL pointer dereference. The root cause of this issue is the call to kfree_skb() instead of dev_kfree_skb_irq() in net/core/dev.c#enqueue_to_backlog(). This patch prevents the skb to be freed within the call to netif_rx() by incrementing its reference count with skb_get(). The skb is finally freed by one of the in-irq-context safe functions: dev_consume_skb_any() or dev_kfree_skb_any(). The "any" version is used because some drivers might call can_get_echo_skb() in a normal context. The reason for this issue to occur is that initially, in the core network stack, loopback skb were not supposed to be received in hardware IRQ context. The CAN stack is an exeption. This bug was previously reported back in 2017 in [1] but the proposed patch never got accepted. While [1] directly modifies net/core/dev.c, we try to propose here a smoother modification local to CAN network stack (the assumption behind is that only CAN devices are affected by this issue). [1] http://lore.kernel.org/r/[email protected]

    Published: 17 Apr 2025
    5.4
    Medium

    CVE-2024-40124

    Last Modified: 25 Jun 2025

    Pydio Core <= 8.2.5 is vulnerable to Cross Site Scripting (XSS) via the New URL Bookmark feature.

    Published: 17 Apr 2025
    8.4
    High

    CVE-2024-55211

    Last Modified: 25 Apr 2025

    An issue in Think Router Tk-Rt-Wr135G V3.0.2-X000 allows attackers to bypass authentication via a crafted cookie.

    Published: 17 Apr 2025
    7.1
    High

    CVE-2024-55238

    Last Modified: 24 Apr 2025

    OpenMetadata <=1.4.1 is vulnerable to SQL Injection. An attacker can extract information from the database in function listCount in the WorkflowDAO interface. The workflowtype and status parameters can be used to build a SQL query.

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2024-56518

    Last Modified: 7 Jul 2025

    Hazelcast Management Center through 6.0 allows remote code execution via a JndiLoginModule user.provider.url in a hazelcast-client XML document (aka a client configuration file), which can be uploaded at the /cluster-connections URI.

    Published: 17 Apr 2025
    7.5
    High

    CVE-2025-25455

    Last Modified: 22 Apr 2025

    Tenda AC10 V4.0si_V16.03.10.20 is vulnerable to Buffer Overflow in AdvSetMacMtuWan via wanMTU2.

    Published: 17 Apr 2025
    7.5
    High

    CVE-2025-25457

    Last Modified: 22 Apr 2025

    Tenda AC10 V4.0si_V16.03.10.20 is vulnerable to Buffer Overflow in AdvSetMacMtuWan via cloneType2.

    Published: 17 Apr 2025
    7.5
    High

    CVE-2025-25454

    Last Modified: 22 Apr 2025

    Tenda AC10 V4.0si_V16.03.10.20 is vulnerable to Buffer Overflow in AdvSetMacMtuWan via wanSpeed2.

    Published: 17 Apr 2025
    3.3
    Low

    CVE-2025-26269

    Last Modified: 11 Jul 2025

    DragonflyDB Dragonfly through 1.28.2 (fixed in 1.29.0) allows authenticated users to cause a denial of service (daemon crash) via a Lua library command that references a large negative integer.

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-28009

    Last Modified: 23 Apr 2025

    A SQL Injection vulnerability exists in the `u` parameter of the progress-body-weight.php endpoint of Dietiqa App v1.0.20.

    Published: 17 Apr 2025
    6.5
    Medium

    CVE-2025-28101

    Last Modified: 23 Apr 2025

    An arbitrary file deletion vulnerability in the /post/{postTitle} component of flaskBlog v2.6.1 allows attackers to delete article titles created by other users via supplying a crafted POST request.

    Published: 17 Apr 2025
    6.1
    Medium

    CVE-2025-29015

    Last Modified: 21 Apr 2025

    Code Astro Internet Banking System 2.0.0 is vulnerable to Cross Site Scripting (XSS) via the name parameter in /admin/pages_account.php.

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29040

    Last Modified: 1 May 2025

    An issue in dlink DIR 823x 240802 allows a remote attacker to execute arbitrary code via the target_addr key value and the function 0x41737c

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29041

    Last Modified: 1 May 2025

    An issue in dlink DIR 823x 240802 allows a remote attacker to execute arbitrary code via the target_addr key value and the function 0x41710c

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29042

    Last Modified: 25 Apr 2025

    An issue in dlink DIR 832x 240802 allows a remote attacker to execute arbitrary code via the macaddr key value to the function 0x42232c

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29043

    Last Modified: 25 Apr 2025

    An issue in dlink DIR 832x 240802 allows a remote attacker to execute arbitrary code via the function 0x417234

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29044

    Last Modified: 21 Apr 2025

    Buffer Overflow vulnerability in Netgear- R61 router V1.0.1.28 allows a remote attacker to execute arbitrary code via the QUERY_STRING key value

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29045

    Last Modified: 21 Apr 2025

    Buffer Overflow vulnerability in ALFA_CAMPRO-co-2.29 allows a remote attacker to execute arbitrary code via the newap_text_0 key value

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29047

    Last Modified: 30 Apr 2025

    Buffer Overflow vulnerability inALFA WiFi CampPro router ALFA_CAMPRO-co-2.29 allows a remote attacker to execute arbitrary code via the hiddenIndex in the function StorageEditUser

    Published: 17 Apr 2025
    7.2
    High

    CVE-2025-29180

    Last Modified: 23 Apr 2025

    In FOXCMS <=1.25, the installdb.php file has a time - based blind SQL injection vulnerability. The url_prefix, domain, and my_website POST parameters are directly concatenated into SQL statements without filtering.

    Published: 17 Apr 2025
    7.2
    High

    CVE-2025-29181

    Last Modified: 23 Apr 2025

    FOXCMS <= V1.25 is vulnerable to SQL Injection via $param['title'] in /admin/util/Field.php.

    Published: 17 Apr 2025
    6.5
    Medium

    CVE-2025-29450

    Last Modified: 23 Apr 2025

    An issue in twonav v.2.1.18-20241105 allows a remote attacker to obtain sensitive information via the site settings component.

    Published: 17 Apr 2025
    7.6
    High

    CVE-2025-29452

    Last Modified: 23 Apr 2025

    An issue in Seo Panel 4.11.0 allows a remote attacker to obtain sensitive information via the Proxy Manager component.

    Published: 17 Apr 2025
    6.5
    Medium

    CVE-2025-29454

    Last Modified: 22 Apr 2025

    An issue in personal-management-system Personal Management System 1.4.65 allows a remote attacker to obtain sensitive information via the Upload function.

    Published: 17 Apr 2025
    6.5
    Medium

    CVE-2025-29456

    Last Modified: 22 Apr 2025

    An issue in personal-management-system Personal Management System 1.4.65 allows a remote attacker to obtain sensitive information via the create Notes function.

    Published: 17 Apr 2025
    7.6
    High

    CVE-2025-29457

    Last Modified: 24 Apr 2025

    An issue in MyBB 1.8.38 allows a remote attacker to obtain sensitive information via the Import a Theme function. NOTE: the Supplier disputes this because of the allowed actions of Board administrators and because of SSRF mitigation.

    Published: 17 Apr 2025
    7.6
    High

    CVE-2025-29459

    Last Modified: 27 Jun 2025

    An issue in MyBB 1.8.38 allows a remote attacker to obtain sensitive information via the Mail function. NOTE: the Supplier disputes this because of the allowed actions of Board administrators and because of SSRF mitigation.

    Published: 17 Apr 2025
    7.6
    High

    CVE-2025-29460

    Last Modified: 25 Apr 2025

    An issue in MyBB 1.8.38 allows a remote attacker to obtain sensitive information via the Add Mycode function. NOTE: the Supplier disputes this because of the allowed actions of Board administrators and because of SSRF mitigation.

    Published: 17 Apr 2025
    7.6
    High

    CVE-2025-29461

    Last Modified: 21 Aug 2025

    An issue in a-blogcms 3.1.15 allows a remote attacker to obtain sensitive information via the /bid/1/admin/entry-edit/ path.

    Published: 17 Apr 2025
    7.2
    High

    CVE-2025-29661

    Last Modified: 23 Apr 2025

    Litepubl CMS <= 7.0.9 is vulnerable to RCE in admin/service/run.

    Published: 17 Apr 2025
    9.8
    Critical

    CVE-2025-29662

    Last Modified: 11 Jul 2025

    A RCE vulnerability in the core application in LandChat 3.25.12.18 allows an unauthenticated attacker to execute system code via remote network access.

    Published: 17 Apr 2025
    6.3
    Medium

    CVE-2025-29722

    Last Modified: 23 Apr 2025

    A CSRF vulnerability in Commercify v1.0 allows remote attackers to perform unauthorized actions on behalf of authenticated users. The issue exists due to missing CSRF protection on sensitive endpoints.

    Published: 17 Apr 2025
    3.3
    Low

    CVE-2025-43708

    Last Modified: 24 Sept 2025

    VisiCut 2.1 allows stack consumption via an XML document with nested set elements, as demonstrated by a java.util.HashMap StackOverflowError when reference='../../../set/set[2]' is used, aka an "insecure deserialization" issue.

    Published: 17 Apr 2025
    5.4
    Medium

    CVE-2025-43717

    Last Modified: 15 Apr 2026

    In PEAR HTTP_Request2 before 2.7.0, multiple files in the tests directory, notably tests/_network/getparameters.php and tests/_network/postparameters.php, reflect any GET or POST parameters, leading to XSS.

    Published: 17 Apr 2025
    8.8
    High

    CVE-2025-1568

    Last Modified: 8 Jul 2025

    Access Control Vulnerability in Gerrit chromiumos project configuration in Google ChromeOS 16063.87.0 allows an attacker with a registered Gerrit account to inject malicious code into ChromeOS projects and potentially achieve Remote Code Execution and Denial of Service via editing trusted pipelines by insufficient access controls and misconfigurations in Gerrit's project.config.

    Published: 16 Apr 2025