Vulnerabilities

With the aim of informing, warning and helping professionals with the latest security vulnerabilities in technology systems, we have made a database available for users interested in this information, which is in Spanish and includes all of the latest documented and recognised vulnerabilities.

This repository, with over 75,000 registers, is based on the information from the NVD (National Vulnerability Database) – by virtue of a partnership agreement – through which INCIBE translates the included information into Spanish.

On occasions this list will show vulnerabilities that have still not been translated, as they are added while the INCIBE team is still carrying out the translation process. The CVE  (Common Vulnerabilities and Exposures) Standard for Information Security Vulnerability Names is used with the aim to support the exchange of information between different tools and databases.

All vulnerabilities collected are linked to different information sources, as well as available patches or solutions provided by manufacturers and developers. It is possible to carry out advanced searches, as there is the option to select different criteria to narrow down the results, some examples being vulnerability types, manufacturers and impact levels, among others.

Through RSS feeds or Newsletters we can be informed daily about the latest vulnerabilities added to the repository. Below there is a list, updated daily, where you can discover the latest vulnerabilities.

CVE-2022-49593

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> tcp: Fix a data-race around sysctl_tcp_probe_interval.<br /> <br /> While reading sysctl_tcp_probe_interval, it can be changed concurrently.<br /> Thus, we need to add READ_ONCE() to its reader.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49594

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> tcp: Fix a data-race around sysctl_tcp_mtu_probe_floor.<br /> <br /> While reading sysctl_tcp_mtu_probe_floor, it can be changed concurrently.<br /> Thus, we need to add READ_ONCE() to its reader.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49574

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> tcp: Fix data-races around sysctl_tcp_recovery.<br /> <br /> While reading sysctl_tcp_recovery, it can be changed concurrently.<br /> Thus, we need to add READ_ONCE() to its readers.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49575

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> tcp: Fix a data-race around sysctl_tcp_thin_linear_timeouts.<br /> <br /> While reading sysctl_tcp_thin_linear_timeouts, it can be changed<br /> concurrently. Thus, we need to add READ_ONCE() to its reader.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49576

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ipv4: Fix data-races around sysctl_fib_multipath_hash_fields.<br /> <br /> While reading sysctl_fib_multipath_hash_fields, it can be changed<br /> concurrently. Thus, we need to add READ_ONCE() to its readers.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49577

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> udp: Fix a data-race around sysctl_udp_l3mdev_accept.<br /> <br /> While reading sysctl_udp_l3mdev_accept, it can be changed concurrently.<br /> Thus, we need to add READ_ONCE() to its reader.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49578

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ip: Fix data-races around sysctl_ip_prot_sock.<br /> <br /> sysctl_ip_prot_sock is accessed concurrently, and there is always a chance<br /> of data-race. So, all readers and writers need some basic protection to<br /> avoid load/store-tearing.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49579

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ipv4: Fix data-races around sysctl_fib_multipath_hash_policy.<br /> <br /> While reading sysctl_fib_multipath_hash_policy, it can be changed<br /> concurrently. Thus, we need to add READ_ONCE() to its readers.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49580

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ipv4: Fix a data-race around sysctl_fib_multipath_use_neigh.<br /> <br /> While reading sysctl_fib_multipath_use_neigh, it can be changed<br /> concurrently. Thus, we need to add READ_ONCE() to its reader.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49581

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> be2net: Fix buffer overflow in be_get_module_eeprom<br /> <br /> be_cmd_read_port_transceiver_data assumes that it is given a buffer that<br /> is at least PAGE_DATA_LEN long, or twice that if the module supports SFF<br /> 8472. However, this is not always the case.<br /> <br /> Fix this by passing the desired offset and length to<br /> be_cmd_read_port_transceiver_data so that we only copy the bytes once.
Severity CVSS v4.0: Pending analysis
Last modification:
22/10/2025

CVE-2022-49582

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> net: dsa: fix NULL pointer dereference in dsa_port_reset_vlan_filtering<br /> <br /> The "ds" iterator variable used in dsa_port_reset_vlan_filtering() -&gt;<br /> dsa_switch_for_each_port() overwrites the "dp" received as argument,<br /> which is later used to call dsa_port_vlan_filtering() proper.<br /> <br /> As a result, switches which do enter that code path (the ones with<br /> vlan_filtering_is_global=true) will dereference an invalid dp in<br /> dsa_port_reset_vlan_filtering() after leaving a VLAN-aware bridge.<br /> <br /> Use a dedicated "other_dp" iterator variable to avoid this from<br /> happening.
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025

CVE-2022-49583

Publication date:
26/02/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> iavf: Fix handling of dummy receive descriptors<br /> <br /> Fix memory leak caused by not handling dummy receive descriptor properly.<br /> iavf_get_rx_buffer now sets the rx_buffer return value for dummy receive<br /> descriptors. Without this patch, when the hardware writes a dummy<br /> descriptor, iavf would not free the page allocated for the previous receive<br /> buffer. This is an unlikely event but can still happen.<br /> <br /> [Jesse: massaged commit message]
Severity CVSS v4.0: Pending analysis
Last modification:
01/10/2025