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-2024-1592

Publication date:
02/03/2024
The Complianz – GDPR/CCPA Cookie Consent plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 6.5.6. This is due to missing or incorrect nonce validation on the process_delete function in class-DNSMPD.php. This makes it possible for unauthenticated attackers to delete GDPR data requests via a forged request granted they can trick a site administrator into performing an action such as clicking on a link.
Severity CVSS v4.0: Pending analysis
Last modification:
08/04/2026

CVE-2024-25063

Publication date:
02/03/2024
Due to insufficient server-side validation, a successful exploit of this vulnerability could allow an attacker to gain access to certain URLs that the attacker should not have access to.
Severity CVSS v4.0: Pending analysis
Last modification:
27/03/2025

CVE-2024-25064

Publication date:
02/03/2024
Due to insufficient server-side validation, an attacker with login privileges could access certain resources that the attacker should not have access to by changing parameter values.
Severity CVSS v4.0: Pending analysis
Last modification:
04/03/2024

CVE-2024-24511

Publication date:
01/03/2024
Cross Site Scripting vulnerability in Pkp OJS v.3.4 allows an attacker to execute arbitrary code via the Input Title component.
Severity CVSS v4.0: Pending analysis
Last modification:
18/04/2025

CVE-2024-24512

Publication date:
01/03/2024
Cross Site Scripting vulnerability in Pkp OJS v.3.4 allows an attacker to execute arbitrary code via the input subtitle component.
Severity CVSS v4.0: Pending analysis
Last modification:
18/04/2025

CVE-2024-25434

Publication date:
01/03/2024
A cross-site scripting (XSS) vulnerability in Pkp Ojs v3.3 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Publicname parameter.
Severity CVSS v4.0: Pending analysis
Last modification:
16/04/2025

CVE-2024-25436

Publication date:
01/03/2024
A cross-site scripting (XSS) vulnerability in the Production module of Pkp Ojs v3.3 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Input subject field under the Add Discussion function.
Severity CVSS v4.0: Pending analysis
Last modification:
28/03/2025

CVE-2024-25438

Publication date:
01/03/2024
A cross-site scripting (XSS) vulnerability in the Submission module of Pkp Ojs v3.3 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Input subject field under the Add Discussion function.
Severity CVSS v4.0: Pending analysis
Last modification:
15/05/2025

CVE-2024-27354

Publication date:
01/03/2024
An issue was discovered in phpseclib 1.x before 1.0.23, 2.x before 2.0.47, and 3.x before 3.0.36. An attacker can construct a malformed certificate containing an extremely large prime to cause a denial of service (CPU consumption for an isPrime primality check). NOTE: this issue was introduced when attempting to fix CVE-2023-27560.
Severity CVSS v4.0: Pending analysis
Last modification:
15/09/2025

CVE-2024-27355

Publication date:
01/03/2024
An issue was discovered in phpseclib 1.x before 1.0.23, 2.x before 2.0.47, and 3.x before 3.0.36. When processing the ASN.1 object identifier of a certificate, a sub identifier may be provided that leads to a denial of service (CPU consumption for decodeOID).
Severity CVSS v4.0: Pending analysis
Last modification:
15/09/2025

CVE-2021-47072

Publication date:
01/03/2024
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> btrfs: fix removed dentries still existing after log is synced<br /> <br /> When we move one inode from one directory to another and both the inode<br /> and its previous parent directory were logged before, we are not supposed<br /> to have the dentry for the old parent if we have a power failure after the<br /> log is synced. Only the new dentry is supposed to exist.<br /> <br /> Generally this works correctly, however there is a scenario where this is<br /> not currently working, because the old parent of the file/directory that<br /> was moved is not authoritative for a range that includes the dir index and<br /> dir item keys of the old dentry. This case is better explained with the<br /> following example and reproducer:<br /> <br /> # The test requires a very specific layout of keys and items in the<br /> # fs/subvolume btree to trigger the bug. So we want to make sure that<br /> # on whatever platform we are, we have the same leaf/node size.<br /> #<br /> # Currently in btrfs the node/leaf size can not be smaller than the page<br /> # size (but it can be greater than the page size). So use the largest<br /> # supported node/leaf size (64K).<br /> <br /> $ mkfs.btrfs -f -n 65536 /dev/sdc<br /> $ mount /dev/sdc /mnt<br /> <br /> # "testdir" is inode 257.<br /> $ mkdir /mnt/testdir<br /> $ chmod 755 /mnt/testdir<br /> <br /> # Create several empty files to have the directory "testdir" with its<br /> # items spread over several leaves (7 in this case).<br /> $ for ((i = 1; i /mnt/testdir/file$i<br /> done<br /> <br /> # Create our test directory "dira", inode number 1458, which gets all<br /> # its items in leaf 7.<br /> #<br /> # The BTRFS_DIR_ITEM_KEY item for inode 257 ("testdir") that points to<br /> # the entry named "dira" is in leaf 2, while the BTRFS_DIR_INDEX_KEY<br /> # item that points to that entry is in leaf 3.<br /> #<br /> # For this particular filesystem node size (64K), file count and file<br /> # names, we endup with the directory entry items from inode 257 in<br /> # leaves 2 and 3, as previously mentioned - what matters for triggering<br /> # the bug exercised by this test case is that those items are not placed<br /> # in leaf 1, they must be placed in a leaf different from the one<br /> # containing the inode item for inode 257.<br /> #<br /> # The corresponding BTRFS_DIR_ITEM_KEY and BTRFS_DIR_INDEX_KEY items for<br /> # the parent inode (257) are the following:<br /> #<br /> # item 460 key (257 DIR_ITEM 3724298081) itemoff 48344 itemsize 34<br /> # location key (1458 INODE_ITEM 0) type DIR<br /> # transid 6 data_len 0 name_len 4<br /> # name: dira<br /> #<br /> # and:<br /> #<br /> # item 771 key (257 DIR_INDEX 1202) itemoff 36673 itemsize 34<br /> # location key (1458 INODE_ITEM 0) type DIR<br /> # transid 6 data_len 0 name_len 4<br /> # name: dira<br /> <br /> $ mkdir /mnt/testdir/dira<br /> <br /> # Make sure everything done so far is durably persisted.<br /> $ sync<br /> <br /> # Now do a change to inode 257 ("testdir") that does not result in<br /> # COWing leaves 2 and 3 - the leaves that contain the directory items<br /> # pointing to inode 1458 (directory "dira").<br /> #<br /> # Changing permissions, the owner/group, updating or adding a xattr,<br /> # etc, will not change (COW) leaves 2 and 3. So for the sake of<br /> # simplicity change the permissions of inode 257, which results in<br /> # updating its inode item and therefore change (COW) only leaf 1.<br /> <br /> $ chmod 700 /mnt/testdir<br /> <br /> # Now fsync directory inode 257.<br /> #<br /> # Since only the first leaf was changed/COWed, we log the inode item of<br /> # inode 257 and only the dentries found in the first leaf, all have a<br /> # key type of BTRFS_DIR_ITEM_KEY, and no keys of type<br /> # BTRFS_DIR_INDEX_KEY, because they sort after the former type and none<br /> # exist in the first leaf.<br /> #<br /> # We also log 3 items that represent ranges for dir items and dir<br /> # indexes for which the log is authoritative:<br /> #<br /> # 1) a key of type BTRFS_DIR_LOG_ITEM_KEY, which indicates the log is<br /> # authoritative for all BTRFS_DIR_ITEM_KEY keys that have an offset<br /> # in the range [0, 2285968570] (the offset here is th<br /> ---truncated---
Severity CVSS v4.0: Pending analysis
Last modification:
09/01/2025

CVE-2021-47073

Publication date:
01/03/2024
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> platform/x86: dell-smbios-wmi: Fix oops on rmmod dell_smbios<br /> <br /> init_dell_smbios_wmi() only registers the dell_smbios_wmi_driver on systems<br /> where the Dell WMI interface is supported. While exit_dell_smbios_wmi()<br /> unregisters it unconditionally, this leads to the following oops:<br /> <br /> [ 175.722921] ------------[ cut here ]------------<br /> [ 175.722925] Unexpected driver unregister!<br /> [ 175.722939] WARNING: CPU: 1 PID: 3630 at drivers/base/driver.c:194 driver_unregister+0x38/0x40<br /> ...<br /> [ 175.723089] Call Trace:<br /> [ 175.723094] cleanup_module+0x5/0xedd [dell_smbios]<br /> ...<br /> [ 175.723148] ---[ end trace 064c34e1ad49509d ]---<br /> <br /> Make the unregister happen on the same condition the register happens<br /> to fix this.
Severity CVSS v4.0: Pending analysis
Last modification:
09/01/2025