CVE-2025-24497
Mié, 05/02/2025 – 18:15
CVE-2025-24497
CVE-2025-24497
Mié, 05/02/2025 – 18:15
CVE-2025-24497
CVE-2025-24326
Mié, 05/02/2025 – 18:15
CVE-2025-24326
Note: Software versions which have reached End of Technical Support (EoTS) are not evaluated.
CVE-2025-21117
Mié, 05/02/2025 – 14:15
CVE-2025-21117
CVE-2024-3976
Mié, 05/02/2025 – 12:15
CVE-2024-3976
CVE-2024-52365
Mié, 05/02/2025 – 12:15
CVE-2024-52365
is vulnerable to stored cross-site scripting. This vulnerability allows authenticated users to embed arbitrary JavaScript code in the Web UI thus altering the intended functionality potentially leading to credentials disclosure within a trusted session.
CVE-2024-52364
Mié, 05/02/2025 – 12:15
CVE-2024-52364
CVE-2024-49348
Mié, 05/02/2025 – 12:15
CVE-2024-49348
allows restricting access to organizational data to valid contexts. The fact that tasks of type comment can be reassigned via API implicitly grants access to user queries in an unexpected context.
CVE-2024-2878
Mié, 05/02/2025 – 13:15
CVE-2024-2878
CVE-2024-9097
Mié, 05/02/2025 – 13:15
CVE-2024-9097
CVE-2023-52925
Mié, 05/02/2025 – 10:15
CVE-2023-52925
netfilter: nf_tables: don't fail inserts if duplicate has expired
nftables selftests fail:
run-tests.sh testcases/sets/0044interval_overlap_0
Expected: 0-2 . 0-3, got:
W: [FAILED] ./testcases/sets/0044interval_overlap_0: got 1
Insertion must ignore duplicate but expired entries.
Moreover, there is a strange asymmetry in nft_pipapo_activate:
It refetches the current element, whereas the other ->activate callbacks
(bitmap, hash, rhash, rbtree) use elem->priv.
Same for .remove: other set implementations take elem->priv,
nft_pipapo_remove fetches elem->priv, then does a relookup,
remove this.
I suspect this was the reason for the change that prompted the
removal of the expired check in pipapo_get() in the first place,
but skipping exired elements there makes no sense to me, this helper
is used for normal get requests, insertions (duplicate check)
and deactivate callback.
In first two cases expired elements must be skipped.
For ->deactivate(), this gets called for DELSETELEM, so it
seems to me that expired elements should be skipped as well, i.e.
delete request should fail with -ENOENT error.