{"id":"CVE-2024-47186","aliases":["GHSA-9h9q-qhxg-89xr"],"url":"https://o3.security/vulnerability/CVE-2024-47186","summary":"Filament has unvalidated ColorColumn and ColorEntry values that can be used for Cross-site Scripting","details":"### Summary\n\nIf values passed to a `ColorColumn` or `ColumnEntry` are not valid and contain a specific set of characters, applications are vulnerable to XSS attack against a user who opens a page on which a color column or entry is rendered.\n\nVersions of Filament from v3.0.0 through v3.2.114 are affected.\n\nPlease upgrade to Filament [v3.2.115](https://github.com/filamentphp/filament/releases/tag/v3.2.115).\n\n### PoC\n\nFor example, using a value such as:\n\n```html\nblue;\"><script>alert('There\\'s a security problem here')</script style=\"\n```\n\nWould get passed into the `@style()` Blade directive from Laravel to render the correct background color, where `$state` contains the value:\n\n```blade\n<div @style([\n    \"background-color: {$state}\" => $state,\n])></div>\n```\n\nSince Laravel does not escape special characters within the `@style` Blade directive, the effective output HTML would be:\n\n```html\n<div style=\"background-color: blue;\"><script>alert('There\\'s a security problem here')</script style=\"\"></div>\n```\n\nCreating the opportunity for arbitrary JS to run if it was stored in the database.\n\n### Response\n\nThis vulnerability (in `ColorColumn` only) was reported by @sv-LayZ, who reported the issue and patched the issue during the evening of 25/09/2024. Thank you Mattis.\n\nThe review process concluded on 27/09/2024, which revealed the issue was also present in `ColorEntry`. This was fixed the same day and Filament [v3.2.115](https://github.com/filamentphp/filament/releases/tag/v3.2.115) followed to escape any special characters while outputting inline styles like this:\n\n```blade\n<div @style([\n    'background-color: ' . e($state) => $state,\n])></div>\n```\n\nAlthough these components are no longer vulnerable to this type of XSS attack, it is good practice to validate colors, and since many Filament users may be accepting color input using the `ColorPicker` form component, [additional color validation documentation was published](https://filamentphp.com/docs/3.x/forms/fields/color-picker#color-picker-validation).","published":"2024-09-27T21:04:33.587Z","modified":"2026-08-12T03:51:40.205119952Z","cvss":{"score":6.1,"severity":"MEDIUM","vector":"CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N"},"epss":{"score":0.00394,"percentile":0.32123,"asOf":"2026-08-06"},"cisaKev":null,"exploitsKnown":0,"affectedPackages":[{"ecosystem":"Packagist","name":"filament/tables","fixedVersion":"3.2.115"},{"ecosystem":"Packagist","name":"filament/infolists","fixedVersion":"3.2.115"}],"fix":{"url":"https://github.com/filamentphp/filament/commit/df7989352464d08eda5837ef50f9997fad902316","label":"filamentphp/filament@df79893"},"references":[{"type":"WEB","url":"https://github.com/filamentphp/filament/releases/tag/v3.2.115"},{"type":"ADVISORY","url":"https://github.com/CVEProject/cvelistV5/tree/main/cves/2024/47xxx/CVE-2024-47186.json"},{"type":"ADVISORY","url":"https://github.com/filamentphp/filament/security/advisories/GHSA-9h9q-qhxg-89xr"},{"type":"ADVISORY","url":"https://nvd.nist.gov/vuln/detail/CVE-2024-47186"},{"type":"FIX","url":"https://github.com/filamentphp/filament/commit/df7989352464d08eda5837ef50f9997fad902316"},{"type":"PACKAGE","url":"https://github.com/filamentphp/filament"}],"provenance":{"sources":["OSV.dev","FIRST.org (EPSS)"],"lastVerified":"2026-08-12T03:51:40.205119952Z"}}