CVE-2025-68924: Code Injection
Impact Within Umbraco Forms, configuring a malicious URL on the Webservice data source can result in Remote Code Execution. This affects all Umbraco Forms versions running on .NET Framework (up to and including version 8).
Patches The affected Umbraco Forms versions are all End-of-Life (EOL) and not supported anymore, hence no patches will be released. Upgrading to any of the currently supported versions (v13, v16 or v17) is recommended.
Workarounds If none of the configured Forms data sources uses the Webservice type, it can be safely excluded by adding the following code to the application. This will completely remove the option to select/use this data source within the Backoffice and thereby mitigate the vulnerability.
c# using Umbraco.Core.Composing; using Umbraco.Forms.Core.Providers; using Umbraco.Forms.Core.Providers.DatasourceTypes;
internal sealed class RemoveFormsWebserviceDataSourceTypeComposer : IUserComposer { public void Compose(Composition composition) => composition.WithCollectionBuilder<DataSourceCollectionBuilder>().Exclude<Webservice>(); }
Any Webservice data source that is configured and still in use should be replaced with a custom implementation instead, before applying the above code. If this is not feasible, the vulnerability can be minimized by revoking the 'Manage Data Sources' from any non-administrator user and/or inheriting from the default Umbraco.Forms.Core.Providers.DatasourceTypes.Webservice class and overriding the ValidateSettings() method to ensure only trusted URLs can be used.
References When upgrading to a supported version, please take the Forms version specific upgrade notes into account and check the CMS upgrade documentation. Content and schema can also be migrated straight to the latest version using Deploy export/import with migrations.
Implementation details on data sources are not extensively documented, but they follow the general Forms provider model and inherit from Umbraco.Forms.Core.FormDataSource.
A special thanks to Piotr Bazydlo (@chudyPB) of watchTowr for finding and disclosing this vulnerability
Other sources
In Umbraco UmbracoForms through 8.13.16, an authenticated attacker can supply a malicious WSDL (aka Webservice) URL as a data source for remote code execution.
— MITRE
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2025-68924?
CVE-2025-68924 has a high severity due to its potential for Remote Code Execution.
How do I fix CVE-2025-68924?
To mitigate CVE-2025-68924, it is recommended to upgrade to a supported version of Umbraco Forms beyond 8.13.16.
Which versions of Umbraco Forms are affected by CVE-2025-68924?
CVE-2025-68924 affects all versions of Umbraco Forms on .NET Framework up to and including version 8.13.16.
What type of vulnerability is CVE-2025-68924?
CVE-2025-68924 is classified as a Remote Code Execution vulnerability.
Can I use Umbraco Forms securely if I am on an affected version for CVE-2025-68924?
It is not advised to use Umbraco Forms on the affected versions as they expose systems to significant security risks.