CVE Feed

    Dashboard / CVE

    6.9
    Medium

    CVE-2025-4255

    Last Modified: 16 May 2025

    A vulnerability classified as critical has been found in PCMan FTP Server 2.0.7. This affects an unknown part of the component RMD Command Handler. The manipulation leads to buffer overflow. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used.

    Published: 5 May 2025
    7.8
    High

    CVE-2024-58100

    Last Modified: 4 Aug 2026

    In the Linux kernel, the following vulnerability has been resolved: bpf: check changes_pkt_data property for extension programs When processing calls to global sub-programs, verifier decides whether to invalidate all packet pointers in current state depending on the changes_pkt_data property of the global sub-program. Because of this, an extension program replacing a global sub-program must be compatible with changes_pkt_data property of the sub-program being replaced. This commit: - adds changes_pkt_data flag to struct bpf_prog_aux: - this flag is set in check_cfg() for main sub-program; - in jit_subprogs() for other sub-programs; - modifies bpf_check_attach_btf_id() to check changes_pkt_data flag; - moves call to check_attach_btf_id() after the call to check_cfg(), because it needs changes_pkt_data flag to be set: bpf_check: ... ... - check_attach_btf_id resolve_pseudo_ldimm64 resolve_pseudo_ldimm64 --> bpf_prog_is_offloaded bpf_prog_is_offloaded check_cfg check_cfg + check_attach_btf_id ... ... The following fields are set by check_attach_btf_id(): - env->ops - prog->aux->attach_btf_trace - prog->aux->attach_func_name - prog->aux->attach_func_proto - prog->aux->dst_trampoline - prog->aux->mod - prog->aux->saved_dst_attach_type - prog->aux->saved_dst_prog_type - prog->expected_attach_type Neither of these fields are used by resolve_pseudo_ldimm64() or bpf_prog_offload_verifier_prep() (for netronome and netdevsim drivers), so the reordering is safe.

    Published: 5 May 2025
    7.5
    High

    CVE-2025-45610

    Last Modified: 10 Oct 2025

    Incorrect access control in the component /scheduleLog/info/1 of PassJava-Platform v3.0.0 allows attackers to access sensitive information via a crafted payload.

    Published: 5 May 2025
    7.5
    High

    CVE-2025-45237

    Last Modified: 18 Nov 2025

    Incorrect access control in the component /config/download of DBSyncer v2.0.6 allows attackers to access the JSON file containing sensitive account information, including the encrypted password.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2024-57231

    Last Modified: 7 May 2025

    NETGEAR RAX5 (AX1600 WiFi Router) V1.0.2.26 was discovered to contain a command injection vulnerability via the ifname parameter in the apcli_do_enr_pbc_wps function.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2024-57233

    Last Modified: 7 May 2025

    NETGEAR RAX5 (AX1600 WiFi Router) v1.0.2.26 was discovered to contain a command injection vulnerability via the iface parameter in the vif_disable function.

    Published: 5 May 2025
    6.5
    Medium

    CVE-2025-25504

    Last Modified: 17 Jun 2025

    An issue in the /usr/local/bin/jncs.sh script of Gefen WebFWC (In AV over IP products) v1.85h, v1.86v, and v1.70 allows attackers with network access to connect to the device over TCP port 4444 without authentication and execute arbitrary commands with root privileges.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-45607

    Last Modified: 16 Jun 2025

    An issue in the component /manage/ of itranswarp v2.19 allows attackers to bypass authentication via a crafted request.

    Published: 5 May 2025
    7.5
    High

    CVE-2025-45617

    Last Modified: 17 Oct 2025

    Incorrect access control in the component /user/list of production_ssm v0.0.1-SNAPSHOT allows attackers to access sensitive information via a crafted payload.

    Published: 5 May 2025
    6.4
    Medium

    CVE-2025-28168

    Last Modified: 30 Sept 2025

    The Multiple File Upload add-on component 3.1.0 for OutSystems is vulnerable to Unrestricted File Upload. This occurs because file extension and size validations are enforced solely on the client side. An attacker can intercept the upload request and modify a parameter to bypass extension restrictions and upload arbitrary files. NOTE: this is a third-party component that is not supplied or supported by OutSystems.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2024-57229

    Last Modified: 7 May 2025

    NETGEAR RAX5 (AX1600 WiFi Router) V1.0.2.26 was discovered to contain a command injection vulnerability via the devname parameter in the reset_wifi function.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2024-57230

    Last Modified: 7 May 2025

    NETGEAR RAX5 (AX1600 WiFi Router) V1.0.2.26 was discovered to contain a command injection vulnerability via the ifname parameter in the apcli_do_enr_pin_wps function.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2024-57232

    Last Modified: 7 May 2025

    NETGEAR RAX5 (AX1600 WiFi Router) V1.0.2.26 was discovered to contain a command injection vulnerability via the ifname parameter in the apcli_wps_gen_pincode function.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2024-57234

    Last Modified: 7 May 2025

    NETGEAR RAX5 (AX1600 WiFi Router) V1.0.2.26 was discovered to contain a command injection vulnerability via the ifname parameter in the apcli_cancel_wps function.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2024-57235

    Last Modified: 7 May 2025

    NETGEAR RAX5 (AX1600 WiFi Router) V1.0.2.26 was discovered to contain a command injection vulnerability via the iface parameter in the vif_enable function.

    Published: 5 May 2025
    7.8
    High

    CVE-2024-58098

    Last Modified: 4 Aug 2026

    In the Linux kernel, the following vulnerability has been resolved: bpf: track changes_pkt_data property for global functions When processing calls to certain helpers, verifier invalidates all packet pointers in a current state. For example, consider the following program: __attribute__((__noinline__)) long skb_pull_data(struct __sk_buff *sk, __u32 len) { return bpf_skb_pull_data(sk, len); } SEC("tc") int test_invalidate_checks(struct __sk_buff *sk) { int *p = (void *)(long)sk->data; if ((void *)(p + 1) > (void *)(long)sk->data_end) return TCX_DROP; skb_pull_data(sk, 0); *p = 42; return TCX_PASS; } After a call to bpf_skb_pull_data() the pointer 'p' can't be used safely. See function filter.c:bpf_helper_changes_pkt_data() for a list of such helpers. At the moment verifier invalidates packet pointers when processing helper function calls, and does not traverse global sub-programs when processing calls to global sub-programs. This means that calls to helpers done from global sub-programs do not invalidate pointers in the caller state. E.g. the program above is unsafe, but is not rejected by verifier. This commit fixes the omission by computing field bpf_subprog_info->changes_pkt_data for each sub-program before main verification pass. changes_pkt_data should be set if: - subprogram calls helper for which bpf_helper_changes_pkt_data returns true; - subprogram calls a global function, for which bpf_subprog_info->changes_pkt_data should be set. The verifier.c:check_cfg() pass is modified to compute this information. The commit relies on depth first instruction traversal done by check_cfg() and absence of recursive function calls: - check_cfg() would eventually visit every call to subprogram S in a state when S is fully explored; - when S is fully explored: - every direct helper call within S is explored (and thus changes_pkt_data is set if needed); - every call to subprogram S1 called by S was visited with S1 fully explored (and thus S inherits changes_pkt_data from S1). The downside of such approach is that dead code elimination is not taken into account: if a helper call inside global function is dead because of current configuration, verifier would conservatively assume that the call occurs for the purpose of the changes_pkt_data computation.

    Published: 5 May 2025
    7.2
    High

    CVE-2025-27920

    Last Modified: 5 Nov 2025

    Output Messenger before 2.0.63 was vulnerable to a directory traversal attack through improper file path handling. By using ../ sequences in parameters, attackers could access sensitive files outside the intended directory, potentially leading to configuration leakage or arbitrary file access.

    Published: 5 May 2025
    8.8
    High

    CVE-2025-45322

    Last Modified: 7 May 2025

    kashipara Online Service Management Portal V1.0 is vulnerable to SQL Injection in osms/Requester/CheckStatus.php via the checkid parameter.

    Published: 5 May 2025
    7.8
    High

    CVE-2024-58237

    Last Modified: 4 Aug 2026

    In the Linux kernel, the following vulnerability has been resolved: bpf: consider that tail calls invalidate packet pointers Tail-called programs could execute any of the helpers that invalidate packet pointers. Hence, conservatively assume that each tail call invalidates packet pointers. Making the change in bpf_helper_changes_pkt_data() automatically makes use of check_cfg() logic that computes 'changes_pkt_data' effect for global sub-programs, such that the following program could be rejected: int tail_call(struct __sk_buff *sk) { bpf_tail_call_static(sk, &jmp_table, 0); return 0; } SEC("tc") int not_safe(struct __sk_buff *sk) { int *p = (void *)(long)sk->data; ... make p valid ... tail_call(sk); *p = 42; /* this is unsafe */ ... } The tc_bpf2bpf.c:subprog_tc() needs change: mark it as a function that can invalidate packet pointers. Otherwise, it can't be freplaced with tailcall_freplace.c:entry_freplace() that does a tail call.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-45611

    Last Modified: 14 Oct 2025

    Incorrect access control in the /user/edit/ component of hope-boot v1.0.0 allows attackers to bypass authentication via a crafted GET request.

    Published: 5 May 2025
    6.5
    Medium

    CVE-2025-26241

    Last Modified: 13 Jun 2025

    A SQL injection vulnerability in the "Search" functionality of "tickets.php" page in osTicket <=1.17.5 allows authenticated attackers to execute arbitrary SQL commands via the "keywords" and "topic_id" URL parameters combination.

    Published: 5 May 2025
    6.1
    Medium

    CVE-2025-27921

    Last Modified: 13 Jun 2025

    A reflected cross-site scripting (XSS) vulnerability was discovered in Output Messenger before 2.0.63, where unsanitized input could be injected into the web application’s response. This vulnerability occurs when user-controlled input is reflected back into the browser without proper sanitization or encoding.

    Published: 5 May 2025
    8.1
    High

    CVE-2025-28062

    Last Modified: 17 Jun 2025

    A Cross-Site Request Forgery (CSRF) vulnerability was discovered in ERPNEXT 14.82.1 and 14.74.3. The vulnerability allows an attacker to perform unauthorized actions such as user deletion, password resets, and privilege escalation due to missing CSRF protections.

    Published: 5 May 2025
    6.1
    Medium

    CVE-2025-29573

    Last Modified: 16 Jun 2025

    Cross-Site Scripting (XSS) vulnerability exists in Mezzanine CMS 6.0.0 in the "View Entries" feature within the Forms module.

    Published: 5 May 2025
    6.5
    Medium

    CVE-2025-47268

    Last Modified: 6 Apr 2026

    ping in iputils before 20250602 allows a denial of service (application error or incorrect data collection) via a crafted ICMP Echo Reply packet, because of a signed 64-bit integer overflow in timestamp multiplication.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-45612

    Last Modified: 16 Jun 2025

    Incorrect access control in xmall v1.1 allows attackers to bypass authentication via a crafted GET request to /index.

    Published: 5 May 2025
    7.5
    High

    CVE-2025-45613

    Last Modified: 14 Oct 2025

    Incorrect access control in the component /user/list of Shiro-Action v0.6 allows attackers to access sensitive information via a crafted payload.

    Published: 5 May 2025
    7.5
    High

    CVE-2025-45614

    Last Modified: 14 Oct 2025

    Incorrect access control in the component /api/user/manager of One v1.0 allows attackers to access sensitive information via a crafted payload.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-45615

    Last Modified: 17 Oct 2025

    Incorrect access control in the /admin/ API of yaoqishan v0.0.1-SNAPSHOT allows attackers to gain access to Admin rights via a crafted request.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-45616

    Last Modified: 17 Oct 2025

    Incorrect access control in the /admin/** API of brcc v1.2.0 allows attackers to gain access to Admin rights via a crafted request.

    Published: 5 May 2025
    6.5
    Medium

    CVE-2025-43915

    Last Modified: 17 Jun 2025

    In Linkerd edge releases before edge-25.2.1, and Buoyant Enterprise for Linkerd releases 2.13.0–2.13.7, 2.14.0–2.14.10, 2.15.0–2.15.7, 2.16.0–2.16.4, and 2.17.0–2.17.1, resource exhaustion can occur for Linkerd proxy metrics.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-44071

    Last Modified: 13 May 2025

    SeaCMS v13.3 was discovered to contain a remote code execution (RCE) vulnerability via the component phomebak.php. This vulnerability allows attackers to execute arbitrary code via a crafted request.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-44072

    Last Modified: 13 May 2025

    SeaCMS v13.3 was discovered to contain a SQL injection vulnerability via the component admin_manager.php.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-44074

    Last Modified: 13 May 2025

    SeaCMS v13.3 was discovered to contain a SQL injection vulnerability via the component admin_topic.php.

    Published: 5 May 2025
    9.1
    Critical

    CVE-2025-45238

    Last Modified: 12 Jun 2025

    foxcms v1.2.5 was discovered to contain an arbitrary file deletion vulnerability via the delRestoreSerie method.

    Published: 5 May 2025
    5.3
    Medium

    CVE-2025-45239

    Last Modified: 12 Jun 2025

    An issue in the restores method (DataBackup.php) of foxcms v2.0.6 allows attackers to execute a directory traversal.

    Published: 5 May 2025
    9.8
    Critical

    CVE-2025-45042

    Last Modified: 7 May 2025

    Tenda AC9 v15.03.05.14 was discovered to contain a command injection vulnerability via the Telnet function.

    Published: 5 May 2025
    6.5
    Medium

    CVE-2025-45240

    Last Modified: 12 Jun 2025

    foxcms v1.2.5 was discovered to contain a SQL injection vulnerability via the executeCommand method in DataBackup.php.

    Published: 5 May 2025
    7.7
    High

    CVE-2025-45242

    Last Modified: 17 Jun 2025

    Rhymix v2.1.22 was discovered to contain an arbitrary file deletion vulnerability via the procFileAdminEditImage method in /file/file.admin.controller.php.

    Published: 5 May 2025
    5.3
    Medium

    CVE-2025-45320

    Last Modified: 7 May 2025

    A Directory Listing Vulnerability was found in the /osms/Requester/ directory of the Kashipara Online Service Management Portal V1.0.

    Published: 5 May 2025
    8.8
    High

    CVE-2025-45321

    Last Modified: 7 May 2025

    kashipara Online Service Management Portal V1.0 is vulnerable to SQL Injection in /osms/Requester/Requesterchangepass.php via the parameter: rPassword.

    Published: 5 May 2025
    7.5
    High

    CVE-2025-45608

    Last Modified: 10 Oct 2025

    Incorrect access control in the /system/user/findUserList API of Xinguan v0.0.1-SNAPSHOT allows attackers to access sensitive information via a crafted payload.

    Published: 5 May 2025
    7.5
    High

    CVE-2025-45609

    Last Modified: 10 Oct 2025

    Incorrect access control in the doFilter function of kob latest v1.0.0-SNAPSHOT allows attackers to access sensitive information via a crafted payload.

    Published: 5 May 2025
    6.5
    Medium

    CVE-2025-45618

    Last Modified: 21 Oct 2025

    Incorrect access control in the component /admin/sys/datasource/ajaxList of jeeweb-mybatis-springboot v0.0.1.RELEASE allows attackers to access sensitive information via a crafted payload.

    Published: 5 May 2025
    6.1
    Medium

    CVE-2025-45751

    Last Modified: 7 May 2025

    SourceCodester Web Based Pharmacy Product Management System 1.0 is vulnerable to Cross Site Scripting (XSS) in add-admin.php via the Fullname text field.

    Published: 5 May 2025
    5.4
    Medium

    CVE-2025-45236

    Last Modified: 18 Nov 2025

    A stored cross-site scripting (XSS) vulnerability in the Edit Profile feature of DBSyncer v2.0.6 allows attackers to execute arbitrary web scripts or HTML via injecting a crafted payload into the Nickname parameter.

    Published: 5 May 2025
    6.9
    Medium

    CVE-2025-4254

    Last Modified: 16 May 2025

    A vulnerability was found in PCMan FTP Server 2.0.7. It has been rated as critical. Affected by this issue is some unknown functionality of the component LIST Command Handler. The manipulation leads to buffer overflow. The attack may be launched remotely. The exploit has been disclosed to the public and may be used.

    Published: 4 May 2025
    6.9
    Medium

    CVE-2025-4253

    Last Modified: 16 May 2025

    A vulnerability was found in PCMan FTP Server 2.0.7. It has been declared as critical. Affected by this vulnerability is an unknown functionality of the component HASH Command Handler. The manipulation leads to buffer overflow. The attack can be launched remotely. The exploit has been disclosed to the public and may be used.

    Published: 4 May 2025
    6.9
    Medium

    CVE-2025-4252

    Last Modified: 16 May 2025

    A vulnerability was found in PCMan FTP Server 2.0.7. It has been classified as critical. Affected is an unknown function of the component APPEND Command Handler. The manipulation leads to buffer overflow. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used.

    Published: 4 May 2025
    6.9
    Medium

    CVE-2025-4251

    Last Modified: 16 May 2025

    A vulnerability was found in PCMan FTP Server 2.0.7 and classified as critical. This issue affects some unknown processing of the component RMDIR Command Handler. The manipulation leads to buffer overflow. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used.

    Published: 4 May 2025