Latest CVE Feed
-
7.5
HIGHCVE-2024-43426
A flaw was found in pdfTeX. Insufficient sanitizing in the TeX notation filter resulted in an arbitrary file read risk on sites where pdfTeX is available, such as those with TeX Live installed.... Read more
Affected Products : moodle- Published: Nov. 07, 2024
- Modified: Aug. 05, 2025
-
8.1
HIGHCVE-2024-43425
A flaw was found in Moodle. Additional restrictions are required to avoid a remote code execution risk in calculated question types. Note: This requires the capability to add/update questions.... Read more
Affected Products : moodle- Published: Nov. 07, 2024
- Modified: May. 01, 2025
-
6.4
MEDIUMCVE-2024-8442
The Prime Slider – Addons For Elementor (Revolution of a slider, Hero Slider, Ecommerce Slider) plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the plugin's Blog widget in all versions up to, and including, 3.15.18 due to insufficien... Read more
Affected Products : prime_slider- Published: Nov. 07, 2024
- Modified: Feb. 05, 2025
-
8.0
HIGHCVE-2024-24914
Authenticated Gaia users can inject code or commands by global variables through special HTTP requests. A Security fix that mitigates this vulnerability is available.... Read more
- Published: Nov. 07, 2024
- Modified: Aug. 26, 2025
-
8.6
HIGHCVE-2024-10526
Rapid7 Velociraptor MSI Installer versions below 0.73.3 suffer from a vulnerability whereby it creates the installation directory with WRITE_DACL permission to the BUILTIN\\Users group. This allows local users who are not administrators to grant themselve... Read more
Affected Products : velociraptor- Published: Nov. 07, 2024
- Modified: Nov. 08, 2024
-
9.1
CRITICALCVE-2024-51504
When using IPAuthenticationProvider in ZooKeeper Admin Server there is a possibility of Authentication Bypass by Spoofing -- this only impacts IP based authentication implemented in ZooKeeper Admin Server. Default configuration of client's IP address dete... Read more
Affected Products : zookeeper- Published: Nov. 07, 2024
- Modified: Jun. 24, 2025
-
5.5
MEDIUMCVE-2024-50172
In the Linux kernel, the following vulnerability has been resolved: RDMA/bnxt_re: Fix a possible memory leak In bnxt_re_setup_chip_ctx() when bnxt_qplib_map_db_bar() fails driver is not freeing the memory allocated for "rdev->chip_ctx".... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 13, 2024
-
5.5
MEDIUMCVE-2024-50171
In the Linux kernel, the following vulnerability has been resolved: net: systemport: fix potential memory leak in bcm_sysport_xmit() The bcm_sysport_xmit() returns NETDEV_TX_OK without freeing skb in case of dma_map_single() fails, add dev_kfree_skb() t... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 13, 2024
-
5.5
MEDIUMCVE-2024-50170
In the Linux kernel, the following vulnerability has been resolved: net: bcmasp: fix potential memory leak in bcmasp_xmit() The bcmasp_xmit() returns NETDEV_TX_OK without freeing skb in case of mapping fails, add dev_kfree_skb() to fix it.... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 13, 2024
-
5.5
MEDIUMCVE-2024-50169
In the Linux kernel, the following vulnerability has been resolved: vsock: Update rx_bytes on read_skb() Make sure virtio_transport_inc_rx_pkt() and virtio_transport_dec_rx_pkt() calls are balanced (i.e. virtio_vsock_sock::rx_bytes doesn't lie) after vs... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 22, 2024
-
5.5
MEDIUMCVE-2024-50168
In the Linux kernel, the following vulnerability has been resolved: net/sun3_82586: fix potential memory leak in sun3_82586_send_packet() The sun3_82586_send_packet() returns NETDEV_TX_OK without freeing skb in case of skb->len being too long, add dev_k... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 13, 2024
-
5.5
MEDIUMCVE-2024-50167
In the Linux kernel, the following vulnerability has been resolved: be2net: fix potential memory leak in be_xmit() The be_xmit() returns NETDEV_TX_OK without freeing skb in case of be_xmit_enqueue() fails, add dev_kfree_skb_any() to fix it.... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 13, 2024
-
5.5
MEDIUMCVE-2024-50166
In the Linux kernel, the following vulnerability has been resolved: fsl/fman: Fix refcount handling of fman-related devices In mac_probe() there are multiple calls to of_find_device_by_node(), fman_bind() and fman_port_bind() which takes references to o... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 22, 2024
-
5.5
MEDIUMCVE-2024-50165
In the Linux kernel, the following vulnerability has been resolved: bpf: Preserve param->string when parsing mount options In bpf_parse_param(), keep the value of param->string intact so it can be freed later. Otherwise, the kmalloc area pointed to by p... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 22, 2024
-
7.1
HIGHCVE-2024-50164
In the Linux kernel, the following vulnerability has been resolved: bpf: Fix overloading of MEM_UNINIT's meaning Lonial reported an issue in the BPF verifier where check_mem_size_reg() has the following code: if (!tnum_is_const(reg->var_off)) ... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Jan. 17, 2025
-
5.5
MEDIUMCVE-2024-50163
In the Linux kernel, the following vulnerability has been resolved: bpf: Make sure internal and UAPI bpf_redirect flags don't overlap The bpf_redirect_info is shared between the SKB and XDP redirect paths, and the two paths use the same numeric flag val... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 22, 2024
-
5.5
MEDIUMCVE-2024-50162
In the Linux kernel, the following vulnerability has been resolved: bpf: devmap: provide rxq after redirect rxq contains a pointer to the device from where the redirect happened. Currently, the BPF program that was executed after a redirect via BPF_MAP_... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 22, 2024
-
5.5
MEDIUMCVE-2024-50161
In the Linux kernel, the following vulnerability has been resolved: bpf: Check the remaining info_cnt before repeating btf fields When trying to repeat the btf fields for array of nested struct, it doesn't check the remaining info_cnt. The following spl... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 13, 2024
-
5.5
MEDIUMCVE-2024-50160
In the Linux kernel, the following vulnerability has been resolved: ALSA: hda/cs8409: Fix possible NULL dereference If snd_hda_gen_add_kctl fails to allocate memory and returns NULL, then NULL pointer dereference will occur in the next line. Since dolp... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 13, 2024
-
7.8
HIGHCVE-2024-50159
In the Linux kernel, the following vulnerability has been resolved: firmware: arm_scmi: Fix the double free in scmi_debugfs_common_setup() Clang static checker(scan-build) throws below warning: | drivers/firmware/arm_scmi/driver.c:line 2915, column 2... Read more
Affected Products : linux_kernel- Published: Nov. 07, 2024
- Modified: Nov. 19, 2024