From 19512ce58617748fdde44c1421da6fb019ea5ee3 Mon Sep 17 00:00:00 2001 From: "advisory-database[bot]" <45398580+advisory-database[bot]@users.noreply.github.com> Date: Tue, 13 May 2025 20:19:40 +0000 Subject: [PATCH] Publish GHSA-2qrj-g9hq-chph --- .../GHSA-2qrj-g9hq-chph.json | 103 ++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 advisories/github-reviewed/2025/05/GHSA-2qrj-g9hq-chph/GHSA-2qrj-g9hq-chph.json diff --git a/advisories/github-reviewed/2025/05/GHSA-2qrj-g9hq-chph/GHSA-2qrj-g9hq-chph.json b/advisories/github-reviewed/2025/05/GHSA-2qrj-g9hq-chph/GHSA-2qrj-g9hq-chph.json new file mode 100644 index 00000000000..c0d4f642c8f --- /dev/null +++ b/advisories/github-reviewed/2025/05/GHSA-2qrj-g9hq-chph/GHSA-2qrj-g9hq-chph.json @@ -0,0 +1,103 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-2qrj-g9hq-chph", + "modified": "2025-05-13T20:17:36Z", + "published": "2025-05-13T20:17:36Z", + "aliases": [ + "CVE-2025-47280" + ], + "summary": "Umbraco.Forms has HTML injection vulnerability in 'Send email' workflow", + "details": "### Impact\nThe 'Send email' workflow does not HTML encode the user-provided field values in the sent email message, making any form with this workflow configured vulnerable, as it allows sending the message from a trusted system and address (potentially bypassing spam and email client security systems).\n\n### Patches\nThis issue affects all (supported) versions Umbraco Forms and is patched in 13.4.2 and 15.1.2.\n\n### Workarounds\nUnpatched or unsupported versions can workaround this issue by using the 'Send email with template (Razor)' workflow instead or [writing a custom workflow type](https://docs.umbraco.com/umbraco-forms/developer/extending/adding-a-workflowtype).\n\nTo avoid accidentally using the vulnerable workflow again, the `SendEmail` workflow type can be removed using the following composer (tested on Umbraco 10, 13, 14 and 15):\n```c#\nusing Umbraco.Cms.Core.Composing;\nusing Umbraco.Forms.Core.Providers.Extensions;\nusing Umbraco.Forms.Core.Providers.WorkflowTypes;\n\ninternal sealed class RemoveFormsSendEmailWorkflowTypeComposer : IComposer\n{\n public void Compose(IUmbracoBuilder builder)\n => builder.FormsWorkflows().Exclude();\n}\n```", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:N/I:N/A:N" + }, + { + "type": "CVSS_V4", + "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:L/SI:H/SA:N/E:U" + } + ], + "affected": [ + { + "package": { + "ecosystem": "NuGet", + "name": "Umbraco.Forms" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "7.0.0" + }, + { + "fixed": "13.4.2" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "NuGet", + "name": "UmbracoForms" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "7.0.0" + }, + { + "last_affected": "8.13.16" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "NuGet", + "name": "Umbraco.Forms" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "14.0.0" + }, + { + "fixed": "15.1.2" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/umbraco/Umbraco.Forms.Issues/security/advisories/GHSA-2qrj-g9hq-chph" + }, + { + "type": "ADVISORY", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-47280" + }, + { + "type": "PACKAGE", + "url": "https://github.com/umbraco/Umbraco.Forms.Issues" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-116" + ], + "severity": "LOW", + "github_reviewed": true, + "github_reviewed_at": "2025-05-13T20:17:36Z", + "nvd_published_at": "2025-05-13T17:16:04Z" + } +} \ No newline at end of file