CVE Feed

    Dashboard / CVE

    6.5
    Medium

    CVE-2025-28144

    Last Modified: 2 May 2025

    Edimax AC1200 Wave 2 Dual-Band Gigabit Router BR-6478AC V3 1.0.15 was discovered to contain a stack overflow vlunerability via peerPin parameter in the formWsc function.

    Published: 15 Apr 2025
    9.8
    Critical

    CVE-2025-28399

    Last Modified: 25 Apr 2025

    An issue in Erick xmall v.1.1 and before allows a remote attacker to escalate privileges via the updateAddress method of the Address Controller class.

    Published: 15 Apr 2025
    5.5
    Medium

    CVE-2025-29213

    Last Modified: 25 Apr 2025

    A zip slip vulnerability in the component \service\migrate\MigrateForm.java of JEEWMS v3.7 allows attackers to execute arbitrary code via a crafted Zip file.

    Published: 15 Apr 2025
    4.8
    Medium

    CVE-2025-29280

    Last Modified: 24 Jun 2025

    Stored cross-site scripting vulnerability exists in PerfreeBlog v4.0.11 in the website name field of the backend system settings interface allows an attacker to insert and execute arbitrary malicious code.

    Published: 15 Apr 2025
    8.8
    High

    CVE-2025-29281

    Last Modified: 24 Jun 2025

    In PerfreeBlog version 4.0.11, regular users can exploit the arbitrary file upload vulnerability in the attach component to upload arbitrary files and execute code within them.

    Published: 15 Apr 2025
    8.3
    High

    CVE-2025-29471

    Last Modified: 23 Apr 2025

    Cross Site Scripting vulnerability in Nagios Log Server v.2024R1.3.1 allows a remote attacker to execute arbitrary code via a payload into the Email field.

    Published: 15 Apr 2025
    5
    Medium

    CVE-2025-32102

    Last Modified: 3 Nov 2025

    CrushFTP 9.x and 10.x through 10.8.4 and 11.x through 11.3.1 allows SSRF via the host and port parameters in a command=telnetSocket request to the /WebInterface/function/ URI.

    Published: 15 Apr 2025
    5
    Medium

    CVE-2025-32103

    Last Modified: 3 Nov 2025

    CrushFTP 9.x and 10.x through 10.8.4 and 11.x through 11.3.1 allows directory traversal via the /WebInterface/function/ URI to read files accessible by SMB at UNC share pathnames, bypassing SecurityManager restrictions.

    Published: 15 Apr 2025
    6
    Medium

    CVE-2025-32987

    Last Modified: 15 Apr 2026

    Arctera eDiscovery Platform before 10.3.2, when Enterprise Vault Collection Module is used, places a cleartext password on a command line in EVSearcher.

    Published: 15 Apr 2025
    9
    Critical

    CVE-2025-32428

    Last Modified: 15 Apr 2026

    Jupyter Remote Desktop Proxy allows you to run a Linux Desktop on a JupyterHub. jupyter-remote-desktop-proxy was meant to rely on UNIX sockets readable only by the current user since version 3.0.0, but when used with TigerVNC, the VNC server started by jupyter-remote-desktop-proxy were still accessible via the network. This vulnerability does not affect users having TurboVNC as the vncserver executable. This issue is fixed in 3.0.1.

    Published: 14 Apr 2025
    9.4
    Critical

    CVE-2025-24797

    Last Modified: 3 Oct 2025

    Meshtastic is an open source mesh networking solution. A fault in the handling of mesh packets containing invalid protobuf data can result in an attacker-controlled buffer overflow, allowing an attacker to hijack execution flow, potentially resulting in remote code execution. This attack does not require authentication or user interaction, as long as the target device rebroadcasts packets on the default channel. This vulnerability fixed in 2.6.2.

    Published: 14 Apr 2025
    3.5
    Low

    CVE-2025-31494

    Last Modified: 25 Aug 2025

    AutoGPT is a platform that allows users to create, deploy, and manage continuous artificial intelligence agents that automate complex workflows. The AutoGPT Platform's WebSocket API transmitted node execution updates to subscribers based on the graph_id+graph_version. Additionally, there was no check prohibiting users from subscribing with another user's graph_id+graph_version. As a result, node execution updates from one user's graph execution could be received by another user within the same instance. This vulnerability does not occur between different instances or between users and non-users of the platform. Single-user instances are not affected. In private instances with a user white-list, the impact is limited by the fact that all potential unintended recipients of these node execution updates must have been admitted by the administrator. This vulnerability is fixed in 0.6.1.

    Published: 14 Apr 2025
    8.6
    High

    CVE-2025-31491

    Last Modified: 5 Aug 2025

    AutoGPT is a platform that allows users to create, deploy, and manage continuous artificial intelligence agents that automate complex workflows. Prior to 0.6.1, AutoGPT allows of leakage of cross-domain cookies and protected headers in requests redirect. AutoGPT uses a wrapper around the requests python library, located in autogpt_platform/backend/backend/util/request.py. In this wrapper, redirects are specifically NOT followed for the first request. If the wrapper is used with allow_redirects set to True (which is the default), any redirect is not followed by the initial request, but rather re-requested by the wrapper using the new location. However, there is a fundamental flaw in manually re-requesting the new location: it does not account for security-sensitive headers which should not be sent cross-origin, such as the Authorization and Proxy-Authorization header, and cookies. For example in autogpt_platform/backend/backend/blocks/github/_api.py, an Authorization header is set when retrieving data from the GitHub API. However, if GitHub suffers from an open redirect vulnerability (such as the made-up example of https://api.github.com/repos/{owner}/{repo}/issues/comments/{comment_id}/../../../../../redirect/?url=https://joshua.hu/), and the script can be coerced into visiting it with the Authorization header, the GitHub credentials in the Authorization header will be leaked. This allows leaking auth headers and private cookies. This vulnerability is fixed in 0.6.1.

    Published: 14 Apr 2025
    7.5
    High

    CVE-2025-31490

    Last Modified: 5 Aug 2025

    AutoGPT is a platform that allows users to create, deploy, and manage continuous artificial intelligence agents that automate complex workflows. Prior to 0.6.1, AutoGPT allows SSRF due to DNS Rebinding in requests wrapper. AutoGPT is built with a wrapper around Python's requests library, hardening the application against SSRF. The code for this wrapper can be found in autogpt_platform/backend/backend/util/request.py. The requested hostname of a URL which is being requested is validated, ensuring that it does not resolve to any local ipv4 or ipv6 addresses. However, this check is not sufficient, as a DNS server may initially respond with a non-blocked address, with a TTL of 0. This means that the initial resolution would appear as a non-blocked address. In this case, validate_url() will return the url as successful. After validate_url() has successfully returned the url, the url is then passed to the real request() function. When the real request() function is called with the validated url, request() will once again resolve the address of the hostname, because the record will not have been cached (due to TTL 0). This resolution may be in the "invalid range". This type of attack is called a "DNS Rebinding Attack". This vulnerability is fixed in 0.6.1.

    Published: 14 Apr 2025
    5.3
    Medium

    CVE-2025-3593

    Last Modified: 10 Oct 2025

    A vulnerability was found in ZHENFENG13/code-projects My-Blog-layui 1.0. It has been declared as critical. This vulnerability affects the function Upload of the file /admin/upload/authorImg/. The manipulation of the argument File leads to unrestricted upload. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used. The vendor was contacted early about this disclosure but did not respond in any way.

    Published: 14 Apr 2025
    5.1
    Medium

    CVE-2025-3592

    Last Modified: 10 Oct 2025

    A vulnerability was found in ZHENFENG13/code-projects My-Blog-layui 1.0. It has been classified as problematic. This affects an unknown part of the file /admin/v1/link/edit. The manipulation leads to cross site scripting. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. Multiple parameters might be affected. The vendor was contacted early about this disclosure but did not respond in any way.

    Published: 14 Apr 2025
    5.1
    Medium

    CVE-2025-3591

    Last Modified: 10 Oct 2025

    A vulnerability was found in ZHENFENG13/code-projects My-Blog-layui 1.0 and classified as problematic. Affected by this issue is some unknown functionality of the file /admin/v1/blog/edit. The manipulation leads to cross site scripting. The attack may be launched remotely. The exploit has been disclosed to the public and may be used. Multiple parameters might be affected. The vendor was contacted early about this disclosure but did not respond in any way.

    Published: 14 Apr 2025
    5.3
    Medium

    CVE-2025-3590

    Last Modified: 15 Apr 2026

    A vulnerability has been found in Adianti Framework up to 8.0 and classified as critical. Affected by this vulnerability is an unknown functionality. The manipulation leads to deserialization. The attack can be launched remotely. The exploit has been disclosed to the public and may be used. Upgrading to version 8.1 is able to address this issue. It is recommended to upgrade the affected component.

    Published: 14 Apr 2025
    5.3
    Medium

    CVE-2025-3589

    Last Modified: 29 Apr 2025

    A vulnerability, which was classified as critical, was found in SourceCodester Music Class Enrollment System 1.0. Affected is an unknown function of the file /manage_class.php. The manipulation of the argument ID leads to sql injection. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used.

    Published: 14 Apr 2025
    5.4
    Medium

    CVE-2022-43850

    Last Modified: 15 Aug 2025

    IBM Aspera Console 3.4.0 through 3.4.4 is vulnerable to cross-site scripting. This vulnerability allows users to embed arbitrary JavaScript code in the Web UI thus altering the intended functionality potentially leading to credentials disclosure within a trusted session.

    Published: 14 Apr 2025
    4.3
    Medium

    CVE-2022-43840

    Last Modified: 15 Aug 2025

    IBM Aspera Console 3.4.0 through 3.4.4 is vulnerable to an XPath injection vulnerability, which could allow an authenticated attacker to exfiltrate sensitive application data and/or determine the structure of the XML document.

    Published: 14 Apr 2025
    5.9
    Medium

    CVE-2022-43851

    Last Modified: 15 Aug 2025

    IBM Aspera Console 3.4.0 through 3.4.4 uses weaker than expected cryptographic algorithms that could allow an attacker to decrypt highly sensitive information.

    Published: 14 Apr 2025
    3.1
    Low

    CVE-2023-27272

    Last Modified: 17 Aug 2025

    IBM Aspera Console 3.4.0 through 3.4.4 allows passwords to be reused when a new user logs into the system.

    Published: 14 Apr 2025
    5.3
    Medium

    CVE-2022-43852

    Last Modified: 15 Aug 2025

    IBM Aspera Console 3.4.0 through 3.4.4 could disclose sensitive information in HTTP headers that could be used in further attacks against the system.

    Published: 14 Apr 2025
    4.8
    Medium

    CVE-2025-3588

    Last Modified: 15 Apr 2026

    A vulnerability, which was classified as problematic, has been found in joelittlejohn jsonschema2pojo 1.2.2. This issue affects the function apply of the file org/jsonschema2pojo/rules/SchemaRule.java of the component JSON File Handler. The manipulation leads to stack-based buffer overflow. Attacking locally is a requirement. The exploit has been disclosed to the public and may be used. The vendor was contacted early about this disclosure but did not respond in any way.

    Published: 14 Apr 2025
    5.4
    Medium

    CVE-2022-43847

    Last Modified: 15 Aug 2025

    IBM Aspera Console 3.4.0 through 3.4.4 is vulnerable to HTTP header injection, caused by improper validation of input by the HOST headers. This could allow an attacker to conduct various attacks against the vulnerable system, including cross-site scripting, cache poisoning or session hijacking.

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32941

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32933

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32934

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32935

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32936

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32937

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32938

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32939

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    —
    Unknown

    CVE-2025-32940

    Last Modified: 15 Apr 2025

    Not used

    Published: 14 Apr 2025
    5.3
    Medium

    CVE-2025-3587

    Last Modified: 5 Jun 2025

    A vulnerability classified as critical was found in ZeroWdd/code-projects studentmanager 1.0. This vulnerability affects unknown code of the file /getTeacherList. The manipulation leads to improper authorization. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used.

    Published: 14 Apr 2025
    9.9
    Critical

    CVE-2025-1782

    Last Modified: 27 Jul 2026

    In HylaFAX Enterprise Web Interface and AvantFAX, the language form element is not properly sanitized before being used and can be misused to include an arbitrary file in the PHP code allowing an attacker to do anything as the web server user. This flaw requires the attacker to be authenticated with a valid user account.

    Published: 14 Apr 2025
    5.3
    Medium

    CVE-2025-3585

    Last Modified: 21 May 2025

    A vulnerability classified as critical has been found in westboy CicadasCMS 1.0. This affects an unknown part of the file /upload/ of the component JSP Parser. The manipulation of the argument File leads to unrestricted upload. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used.

    Published: 14 Apr 2025
    9.9
    Critical

    CVE-2025-32445

    Last Modified: 15 Apr 2026

    Argo Events is an event-driven workflow automation framework for Kubernetes. A user with permission to create/modify EventSource and Sensor custom resources can gain privileged access to the host system and cluster, even without having direct administrative privileges. The EventSource and Sensor CRs allow the corresponding orchestrated pod to be customized with spec.template and spec.template.container (with type k8s.io/api/core/v1.Container), thus, any specification under container such as command, args, securityContext , volumeMount can be specified, and applied to the EventSource or Sensor pod. With these, a user would be able to gain privileged access to the cluster host, if he/she specified the EventSource/Sensor CR with some particular properties under template. This vulnerability is fixed in v1.9.6.

    Published: 14 Apr 2025
    6.9
    Medium

    CVE-2025-3277

    Last Modified: 18 Aug 2025

    An integer overflow can be triggered in SQLite’s `concat_ws()` function. The resulting, truncated integer is then used to allocate a buffer. When SQLite then writes the resulting string to the buffer, it uses the original, untruncated size and thus a wild Heap Buffer overflow of size ~4GB can be triggered. This can result in arbitrary code execution.

    Published: 14 Apr 2025
    5.6
    Medium

    CVE-2025-2572

    Last Modified: 17 Jul 2025

    In WhatsUp Gold versions released before 2024.0.3, a database manipulation vulnerability allows an unauthenticated attacker to modify the contents of WhatsUp.dbo.WrlsMacAddressGroup.

    Published: 14 Apr 2025
    9.3
    Critical

    CVE-2025-22371

    Last Modified: 15 Apr 2026

    Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in SicommNet BASEC (SaaS Service) login page allows an unauthenticated remote attacker to Bypass Authentication and execute arbitrary SQL commands.This issue at least affects BASEC for the date of 14 Dec 2021 onwards. It is very likely that this vulnerability has been present in the solution before that. The issue was fixed by SicommNet around 11pm on 16 april 2025 (Eastern Time)

    Published: 14 Apr 2025
    8.7
    High

    CVE-2025-22373

    Last Modified: 15 Apr 2026

    Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in SicommNet BASEC on SaaS allows Reflected XSS, XSS Through HTTP Query Strings, Rendering of Arbitrary HTML and alternation of CSS Styles This issue affects BASEC: from 14 Dec 2021.

    Published: 14 Apr 2025
    9.3
    Critical

    CVE-2025-22372

    Last Modified: 15 Apr 2026

    Insufficiently Protected Credentials vulnerability in SicommNet BASEC on SaaS allows Password Recovery. Passwords are either stored in plain text using reversible encryption, allowing an attacker with sufficient privileges to extract plain text passwords easily. This issue affects BASEC: from 14 Dec 2021.

    Published: 14 Apr 2025
    5.3
    Medium

    CVE-2025-3571

    Last Modified: 15 Apr 2026

    A vulnerability was found in Fannuo Enterprise Content Management System 凡诺企业网站管理系统 1.1/4.0. It has been declared as critical. This vulnerability affects unknown code of the file admin/cms_chip.php. The manipulation of the argument del leads to sql injection. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used.

    Published: 14 Apr 2025
    6.3
    Medium

    CVE-2024-49825

    Last Modified: 1 Sept 2025

    IBM Robotic Process Automation and Robotic Process Automation for Cloud Pak 21.0.0 through 21.0.7.20 and 23.0.0 through 23.0.20 does not invalidate session after a logout which could allow an authenticated user to impersonate another user on the system.

    Published: 14 Apr 2025
    5.4
    Medium

    CVE-2025-2475

    Last Modified: 2 Oct 2025

    Mattermost versions 10.5.x <= 10.5.1, 10.4.x <= 10.4.3, 9.11.x <= 9.11.9 fail to invalidate the cache when a user account is converted to a bot which allows an attacker to login to the bot exactly one time via normal credentials.

    Published: 14 Apr 2025
    3.1
    Low

    CVE-2025-2424

    Last Modified: 1 Oct 2025

    Mattermost versions 10.5.x <= 10.5.1, 9.11.x <= 9.11.9 fail to check if a file has been deleted when creating a bookmark which allows an attacker who knows the IDs of deleted files to obtain metadata of the files via bookmark creation.

    Published: 14 Apr 2025
    5.1
    Medium

    CVE-2025-3570

    Last Modified: 26 Jun 2025

    A vulnerability was found in JamesZBL/code-projects db-hospital-drug 1.0. It has been classified as problematic. This affects the function Save of the file ContentController.java. The manipulation of the argument content leads to cross site scripting. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The vendor was contacted early about this disclosure but did not respond in any way.

    Published: 14 Apr 2025
    7.1
    High

    CVE-2025-2161

    Last Modified: 30 Oct 2025

    Pega Platform versions 7.2.1 to Infinity 24.2.1 are affected by an XSS issue with Mashup

    Published: 14 Apr 2025