| Affected_by_vulnerabilities |
| 0 |
| url |
VCID-2act-yfey-vfgf |
| vulnerability_id |
VCID-2act-yfey-vfgf |
| summary |
org.xwiki.platform:xwiki-platform-oldcore allows SQL injection in short form select requests through the script query API
### Impact
It is possible for a user with SCRIPT right to escape from the HQL execution context and perform a blind SQL injection to execute arbitrary SQL statements on the database backend.
Depending on the used database backend, the attacker may be able to not only obtain confidential information such as password hashes from the database, but also execute UPDATE/INSERT/DELETE queries.
The vulnerability may be tested in a default installation of XWIki Standard Flavor, including using the official Docker containers.
For example, with a MySQL or MariaDB database, you can use the following script (which a user having SCRIPT right but not PROGRAMMING right) to get the content of the xwikistrings table (which contain all the short string fields stored in objects, including passwords):
```
{{velocity}}
$services.query.hql("where 1<>'1\'' union select concat(XWS_NAME, XWS_VALUE) from xwikistrings #'").execute()
{{/velocity}}
```
### Patches
This has been patched in 16.10.1, 16.4.6 and 15.10.16.
### Workarounds
There is no known workaround, other than upgrading XWiki.
The protection added to this REST API is the same as the one used to validate complete select queries, making it more consistent. However, while the script API always had this protection for complete queries, it's important to note that it's a very strict protection and some valid, but complex, queries might suddenly require the author to have programming right.
### References
https://jira.xwiki.org/browse/XWIKI-22718
### For more information
If you have any questions or comments about this advisory:
* Open an issue in [Jira XWiki.org](https://jira.xwiki.org/)
* Email us at [Security Mailing List](mailto:security@xwiki.org) |
| references |
| 0 |
| reference_url |
https://api.first.org/data/v1/epss?cve=CVE-2025-32968 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75833 |
| published_at |
2026-04-21T12:55:00Z |
|
| 1 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75752 |
| published_at |
2026-04-02T12:55:00Z |
|
| 2 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75784 |
| published_at |
2026-04-04T12:55:00Z |
|
| 3 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75763 |
| published_at |
2026-04-07T12:55:00Z |
|
| 4 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75796 |
| published_at |
2026-04-08T12:55:00Z |
|
| 5 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75808 |
| published_at |
2026-04-09T12:55:00Z |
|
| 6 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75831 |
| published_at |
2026-04-11T12:55:00Z |
|
| 7 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75812 |
| published_at |
2026-04-12T12:55:00Z |
|
| 8 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75806 |
| published_at |
2026-04-13T12:55:00Z |
|
| 9 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75844 |
| published_at |
2026-04-16T12:55:00Z |
|
| 10 |
| value |
0.0091 |
| scoring_system |
epss |
| scoring_elements |
0.75848 |
| published_at |
2026-04-18T12:55:00Z |
|
|
| url |
https://api.first.org/data/v1/epss?cve=CVE-2025-32968 |
|
| 1 |
|
| 2 |
|
| 3 |
| reference_url |
https://jira.xwiki.org/browse/XWIKI-22718 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
8.6 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N |
|
| 1 |
| value |
HIGH |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
| 2 |
| value |
Track |
| scoring_system |
ssvc |
| scoring_elements |
SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2025-04-23T16:17:37Z/ |
|
|
| url |
https://jira.xwiki.org/browse/XWIKI-22718 |
|
| 4 |
|
| 5 |
|
|
| fixed_packages |
|
| aliases |
CVE-2025-32968, GHSA-g9jj-75mx-wjcx
|
| risk_score |
4.0 |
| exploitability |
0.5 |
| weighted_severity |
8.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-2act-yfey-vfgf |
|
| 1 |
| url |
VCID-3m9j-nt38-x3hq |
| vulnerability_id |
VCID-3m9j-nt38-x3hq |
| summary |
XWiki leaks password hashes and other accessible password properties
### Impact
Any user with edit right on a page of the wiki can create an XClass with a database list property that references a password property, for example the password hash that is stored for users. When adding an object of that XClass, the content of that password property is displayed. In practice, with a standard rights setup, this means that any user with an account on the wiki can access password hashes of all users, and possibly other password properties (with hashed or plain storage) that are on pages that the user can view.
### Patches
This vulnerability has been pached in XWiki 16.4.7, 16.10.5, and 17.2.0 by disallowing the use of password properties in database list properties. Additionally, queries for email properties are disallowed, too, when email obfuscation is enabled.
### Workarounds
We're not aware of any workarounds. |
| references |
| 0 |
| reference_url |
https://api.first.org/data/v1/epss?cve=CVE-2025-54124 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
0.00026 |
| scoring_system |
epss |
| scoring_elements |
0.07442 |
| published_at |
2026-04-12T12:55:00Z |
|
| 1 |
| value |
0.00026 |
| scoring_system |
epss |
| scoring_elements |
0.07455 |
| published_at |
2026-04-11T12:55:00Z |
|
| 2 |
| value |
0.00026 |
| scoring_system |
epss |
| scoring_elements |
0.07345 |
| published_at |
2026-04-18T12:55:00Z |
|
| 3 |
| value |
0.00026 |
| scoring_system |
epss |
| scoring_elements |
0.07358 |
| published_at |
2026-04-16T12:55:00Z |
|
| 4 |
| value |
0.00026 |
| scoring_system |
epss |
| scoring_elements |
0.07431 |
| published_at |
2026-04-13T12:55:00Z |
|
| 5 |
| value |
0.00032 |
| scoring_system |
epss |
| scoring_elements |
0.09318 |
| published_at |
2026-04-04T12:55:00Z |
|
| 6 |
| value |
0.00032 |
| scoring_system |
epss |
| scoring_elements |
0.09307 |
| published_at |
2026-04-08T12:55:00Z |
|
| 7 |
| value |
0.00032 |
| scoring_system |
epss |
| scoring_elements |
0.09267 |
| published_at |
2026-04-02T12:55:00Z |
|
| 8 |
| value |
0.00032 |
| scoring_system |
epss |
| scoring_elements |
0.09232 |
| published_at |
2026-04-07T12:55:00Z |
|
| 9 |
| value |
0.00032 |
| scoring_system |
epss |
| scoring_elements |
0.0935 |
| published_at |
2026-04-09T12:55:00Z |
|
| 10 |
| value |
0.00039 |
| scoring_system |
epss |
| scoring_elements |
0.11826 |
| published_at |
2026-04-21T12:55:00Z |
|
|
| url |
https://api.first.org/data/v1/epss?cve=CVE-2025-54124 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
| reference_url |
https://jira.xwiki.org/browse/XWIKI-22811 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
7.1 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N |
|
| 1 |
| value |
HIGH |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
| 2 |
| value |
Track |
| scoring_system |
ssvc |
| scoring_elements |
SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2025-08-06T20:27:54Z/ |
|
|
| url |
https://jira.xwiki.org/browse/XWIKI-22811 |
|
| 5 |
|
| 6 |
|
|
| fixed_packages |
|
| aliases |
CVE-2025-54124, GHSA-r38m-cgpg-qj69
|
| risk_score |
4.0 |
| exploitability |
0.5 |
| weighted_severity |
8.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-3m9j-nt38-x3hq |
|
| 2 |
| url |
VCID-4n2t-crsf-87gr |
| vulnerability_id |
VCID-4n2t-crsf-87gr |
| summary |
XWiki allows remote code execution through preview of XClass changes in AWM editor
### Impact
Any XWiki user with edit right on at least one App Within Minutes application (the default for all users XWiki) can obtain programming right/perform remote code execution by editing the application. The detailed reproduction steps can be found in the [original bug report](https://jira.xwiki.org/browse/XWIKI-22719).
### Patches
This vulnerability has been fixed in XWiki 17.0.0, 16.4.7, and 16.10.3.
### Workarounds
Restricting edit rights on all existing App Within Minutes applications to trusted users mitigates at least the PoC exploit, but we can't exclude that there are other ways to exploit this vulnerability. |
| references |
| 0 |
| reference_url |
https://api.first.org/data/v1/epss?cve=CVE-2025-49586 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
0.04551 |
| scoring_system |
epss |
| scoring_elements |
0.89162 |
| published_at |
2026-04-04T12:55:00Z |
|
| 1 |
| value |
0.04551 |
| scoring_system |
epss |
| scoring_elements |
0.89182 |
| published_at |
2026-04-08T12:55:00Z |
|
| 2 |
| value |
0.04551 |
| scoring_system |
epss |
| scoring_elements |
0.89165 |
| published_at |
2026-04-07T12:55:00Z |
|
| 3 |
| value |
0.04551 |
| scoring_system |
epss |
| scoring_elements |
0.89147 |
| published_at |
2026-04-02T12:55:00Z |
|
| 4 |
| value |
0.09249 |
| scoring_system |
epss |
| scoring_elements |
0.9274 |
| published_at |
2026-04-21T12:55:00Z |
|
| 5 |
| value |
0.09249 |
| scoring_system |
epss |
| scoring_elements |
0.92726 |
| published_at |
2026-04-11T12:55:00Z |
|
| 6 |
| value |
0.09249 |
| scoring_system |
epss |
| scoring_elements |
0.9272 |
| published_at |
2026-04-09T12:55:00Z |
|
| 7 |
| value |
0.09249 |
| scoring_system |
epss |
| scoring_elements |
0.92725 |
| published_at |
2026-04-13T12:55:00Z |
|
| 8 |
| value |
0.09249 |
| scoring_system |
epss |
| scoring_elements |
0.92736 |
| published_at |
2026-04-18T12:55:00Z |
|
|
| url |
https://api.first.org/data/v1/epss?cve=CVE-2025-49586 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
| reference_url |
https://jira.xwiki.org/browse/XWIKI-22719 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
8.7 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N |
|
| 1 |
| value |
HIGH |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
| 2 |
| value |
Track* |
| scoring_system |
ssvc |
| scoring_elements |
SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-06-13T18:07:25Z/ |
|
|
| url |
https://jira.xwiki.org/browse/XWIKI-22719 |
|
| 5 |
|
| 6 |
|
|
| fixed_packages |
|
| aliases |
CVE-2025-49586, GHSA-jp4x-w9cj-97q7
|
| risk_score |
4.0 |
| exploitability |
0.5 |
| weighted_severity |
8.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-4n2t-crsf-87gr |
|
| 3 |
| url |
VCID-f872-dkzj-ufac |
| vulnerability_id |
VCID-f872-dkzj-ufac |
| summary |
XWiki allows SQL injection in query endpoint of REST API with Oracle
### Impact
It's possible to execute any SQL query in Oracle by using the function like [DBMS_XMLGEN or DBMS_XMLQUERY](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_XMLGEN.html).
The XWiki query validator does not sanitize functions that would be used in a simple `select` and Hibernate allows using any native function in an HQL query.
### Patches
This has been patched in 16.10.2, 16.4.7 and 15.10.16.
### Workarounds
There is no known workaround, other than upgrading XWiki.
### References
https://jira.xwiki.org/browse/XWIKI-22734
### For more information
If you have any questions or comments about this advisory:
* Open an issue in [Jira XWiki.org](https://jira.xwiki.org/)
* Email us at [Security Mailing List](mailto:security@xwiki.org) |
| references |
| 0 |
| reference_url |
https://api.first.org/data/v1/epss?cve=CVE-2024-56158 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
0.0071 |
| scoring_system |
epss |
| scoring_elements |
0.72197 |
| published_at |
2026-04-02T12:55:00Z |
|
| 1 |
| value |
0.0071 |
| scoring_system |
epss |
| scoring_elements |
0.72193 |
| published_at |
2026-04-07T12:55:00Z |
|
| 2 |
| value |
0.0071 |
| scoring_system |
epss |
| scoring_elements |
0.72217 |
| published_at |
2026-04-04T12:55:00Z |
|
| 3 |
| value |
0.01603 |
| scoring_system |
epss |
| scoring_elements |
0.81753 |
| published_at |
2026-04-21T12:55:00Z |
|
| 4 |
| value |
0.01603 |
| scoring_system |
epss |
| scoring_elements |
0.81712 |
| published_at |
2026-04-13T12:55:00Z |
|
| 5 |
| value |
0.01603 |
| scoring_system |
epss |
| scoring_elements |
0.81718 |
| published_at |
2026-04-12T12:55:00Z |
|
| 6 |
| value |
0.01603 |
| scoring_system |
epss |
| scoring_elements |
0.81731 |
| published_at |
2026-04-11T12:55:00Z |
|
| 7 |
| value |
0.01603 |
| scoring_system |
epss |
| scoring_elements |
0.81711 |
| published_at |
2026-04-09T12:55:00Z |
|
| 8 |
| value |
0.01603 |
| scoring_system |
epss |
| scoring_elements |
0.81707 |
| published_at |
2026-04-08T12:55:00Z |
|
| 9 |
| value |
0.01603 |
| scoring_system |
epss |
| scoring_elements |
0.8175 |
| published_at |
2026-04-18T12:55:00Z |
|
|
| url |
https://api.first.org/data/v1/epss?cve=CVE-2024-56158 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
| reference_url |
https://jira.xwiki.org/browse/XWIKI-22734 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
9.3 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N |
|
| 1 |
| value |
CRITICAL |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
| 2 |
| value |
Track |
| scoring_system |
ssvc |
| scoring_elements |
SSVCv2/E:N/A:Y/T:T/P:M/B:A/M:M/D:T/2025-06-12T15:23:16Z/ |
|
|
| url |
https://jira.xwiki.org/browse/XWIKI-22734 |
|
| 5 |
|
| 6 |
|
|
| fixed_packages |
|
| aliases |
CVE-2024-56158, GHSA-prwh-7838-xf82
|
| risk_score |
4.5 |
| exploitability |
0.5 |
| weighted_severity |
9.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-f872-dkzj-ufac |
|
| 4 |
| url |
VCID-p59s-q94b-9kb6 |
| vulnerability_id |
VCID-p59s-q94b-9kb6 |
| summary |
XWiki exposes passwords and emails stored in fields not named password/email in xml.vm
### Impact
The XML export of a page in XWiki that can be triggered by any user with view rights on a page by appending `?xpage=xml` to the URL includes password and email properties stored on a document that aren't named `password` or `email`. This allows any user to obtain the salted and hashed user account validation or password reset token. As those tokens are randomly generated strings, the immediate impact of this should be low. The user's password and email itself aren't exposed as those fields are named `password` and `email` and thus aren't affected. However, depending on how the wiki is used, there could be extensions or custom code that store passwords in plain text in such password properties that would be exposed by this vulnerability.
### Patches
This vulnerability has been fixed by completely removing the output of password and email fields in this XML export in versions 17.2.0 RC1, 16.10.5 and 16.4.7.
### Workarounds
If this XML export isn't needed, the file `templates/xml.vm` in the deployed WAR can be deleted. There isn't any feature in XWiki itself that depends on this XML export. |
| references |
| 0 |
| reference_url |
https://api.first.org/data/v1/epss?cve=CVE-2025-54125 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
0.00556 |
| scoring_system |
epss |
| scoring_elements |
0.68163 |
| published_at |
2026-04-21T12:55:00Z |
|
| 1 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.7037 |
| published_at |
2026-04-04T12:55:00Z |
|
| 2 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.70353 |
| published_at |
2026-04-02T12:55:00Z |
|
| 3 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.70349 |
| published_at |
2026-04-07T12:55:00Z |
|
| 4 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.70455 |
| published_at |
2026-04-18T12:55:00Z |
|
| 5 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.70446 |
| published_at |
2026-04-16T12:55:00Z |
|
| 6 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.70404 |
| published_at |
2026-04-13T12:55:00Z |
|
| 7 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.70418 |
| published_at |
2026-04-12T12:55:00Z |
|
| 8 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.70433 |
| published_at |
2026-04-11T12:55:00Z |
|
| 9 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.7041 |
| published_at |
2026-04-09T12:55:00Z |
|
| 10 |
| value |
0.00635 |
| scoring_system |
epss |
| scoring_elements |
0.70395 |
| published_at |
2026-04-08T12:55:00Z |
|
|
| url |
https://api.first.org/data/v1/epss?cve=CVE-2025-54125 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
| reference_url |
https://jira.xwiki.org/browse/XWIKI-22810 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
8.7 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N |
|
| 1 |
| value |
HIGH |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
| 2 |
| value |
Track |
| scoring_system |
ssvc |
| scoring_elements |
SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2025-08-06T20:28:50Z/ |
|
|
| url |
https://jira.xwiki.org/browse/XWIKI-22810 |
|
| 5 |
|
| 6 |
|
|
| fixed_packages |
|
| aliases |
CVE-2025-54125, GHSA-57q2-6cp4-9mq3
|
| risk_score |
4.0 |
| exploitability |
0.5 |
| weighted_severity |
8.0 |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-p59s-q94b-9kb6 |
|
|