ghsa-qgp4-5qx6-548g
Vulnerability from github
Impact
An editor with write access to the Kirby Panel can upload an SVG or XML file that contains harmful content like <script>
tags. The direct link to that file can be sent to other users or visitors of the site. If the victim opens that link in a browser where they are logged in to Kirby, the script will run and can for example trigger requests to Kirby's API with the permissions of the victim.
This vulnerability is critical if you might have potential attackers in your group of authenticated Panel users. They can escalate their privileges if they get access to the Panel session of an admin user. Depending on your site, other JavaScript-powered attacks are possible.
Visitors without Panel access can only use this attack vector if your site allows SVG or XML file uploads in frontend forms and you don't already validate or sanitize uploaded SVG or XML files.
The attack requires user interaction by another user or visitor and cannot be automated.
Patches
Uploads in the Panel
The problem has been patched in Kirby 3.5.4 by validating uploaded SVG and XML files and rejecting potentially harmful files. Please update to this or a later version to fix the vulnerability.
Frontend upload forms
Frontend upload forms need to be patched separately depending on how they store the uploaded file(s). If you use File::create()
, you are protected by updating to Kirby 3.5.4+.
Validate existing files
Already uploaded files are not automatically validated again. If you are not sure if you have been impacted by this vulnerability in the past, we recommend to run all site files through the validator classes after updating to Kirby 3.5.4. You can use the following test script by pasting it into a template or uploading it to your web root:
```php <?php
@include_once DIR . '/kirby/bootstrap.php';
if (version_compare(kirby()->version(), '3.5.4', '<') === true) { die('This script requires Kirby 3.5.4+.'); }
$objects = [ // the site itself site(),
// all pages and drafts ...site()->index(true)->values(),
// all users ...kirby()->users()->values() ];
$errors = false;
foreach ($objects as $object) {
foreach ($object->files() as $file) {
try {
// validate the contents lazily
// (if a validator exists)
$file->validateContents(true);
} catch (\Kirby\Exception\InvalidArgumentException $e) {
echo $file->id() . ': ' . $e->getMessage() . "
\n";
$errors = true;
}
}
}
if ($errors === false) { echo 'No validation errors found.'; } ```
You only need to run this validator script once as future uploads will automatically be validated. If the script prints "No validation errors found", you have not been impacted by the vulnerability so far.
Errors that it lists may or may not be critical as our validator classes also catch files with an invalid data structure or less harmful attacks like the "billion laughs" denial-of-service attack or the usage of external sources. We recommend to review and fix each listed error manually until the script no longer finds any validation errors.
Please delete the script again after you have used it.
Workarounds
If you cannot update to Kirby 3.5.4, you can disable the upload of SVG and XML files in your file blueprints and validate or replace your already uploaded files once.
Credits
Thanks to @sreenathr10 for reporting the problem.
{ "affected": [ { "package": { "ecosystem": "Packagist", "name": "getkirby/cms" }, "ranges": [ { "events": [ { "introduced": "0" }, { "fixed": "3.5.4" } ], "type": "ECOSYSTEM" } ] } ], "aliases": [ "CVE-2021-29460" ], "database_specific": { "cwe_ids": [ "CWE-79" ], "github_reviewed": true, "github_reviewed_at": "2021-04-27T20:11:58Z", "nvd_published_at": "2021-04-27T20:15:00Z", "severity": "HIGH" }, "details": "### Impact\n\nAn editor with write access to the Kirby Panel can upload an SVG or XML file that contains harmful content like `\u003cscript\u003e` tags. The direct link to that file can be sent to other users or visitors of the site. If the victim opens that link in a browser where they are logged in to Kirby, the script will run and can for example trigger requests to Kirby\u0027s API with the permissions of the victim.\n\nThis vulnerability is critical if you might have potential attackers in your group of authenticated Panel users. They can escalate their privileges if they get access to the Panel session of an admin user. Depending on your site, other JavaScript-powered attacks are possible.\n\nVisitors without Panel access can only use this attack vector if your site allows SVG or XML file uploads in frontend forms and you don\u0027t already validate or sanitize uploaded SVG or XML files.\n\nThe attack requires user interaction by another user or visitor and *cannot* be automated.\n\n### Patches\n\n#### Uploads in the Panel\n\nThe problem has been patched in [Kirby 3.5.4](https://github.com/getkirby/kirby/releases/tag/3.5.4) by validating uploaded SVG and XML files and rejecting potentially harmful files. Please update to this or a [later version](https://github.com/getkirby/kirby/releases/) to fix the vulnerability.\n\n#### Frontend upload forms\n\nFrontend upload forms need to be patched separately depending on how they store the uploaded file(s). If you use `File::create()`, you are protected by updating to Kirby 3.5.4+.\n\n#### Validate existing files\n\nAlready uploaded files are *not* automatically validated again. If you are not sure if you have been impacted by this vulnerability in the past, we recommend to run all site files through the validator classes after updating to Kirby 3.5.4. You can use the following test script by pasting it into a template or uploading it to your web root:\n\n```php\n\u003c?php\n\n@include_once __DIR__ . \u0027/kirby/bootstrap.php\u0027;\n\nif (version_compare(kirby()-\u003eversion(), \u00273.5.4\u0027, \u0027\u003c\u0027) === true) {\n die(\u0027This script requires Kirby 3.5.4+.\u0027);\n}\n\n$objects = [\n // the site itself\n site(),\n\n // all pages and drafts\n ...site()-\u003eindex(true)-\u003evalues(),\n\n // all users\n ...kirby()-\u003eusers()-\u003evalues()\n];\n\n$errors = false;\nforeach ($objects as $object) {\n foreach ($object-\u003efiles() as $file) {\n try {\n // validate the contents lazily\n // (if a validator exists)\n $file-\u003evalidateContents(true);\n } catch (\\Kirby\\Exception\\InvalidArgumentException $e) {\n echo $file-\u003eid() . \u0027: \u0027 . $e-\u003egetMessage() . \"\u003cbr\u003e\\n\";\n $errors = true;\n }\n }\n}\n\nif ($errors === false) {\n echo \u0027No validation errors found.\u0027;\n}\n```\n\nYou only need to run this validator script once as future uploads will automatically be validated. If the script prints \"No validation errors found\", you have not been impacted by the vulnerability so far.\n\nErrors that it lists may or may not be critical as our validator classes also catch files with an invalid data structure or less harmful attacks like the [\"billion laughs\" denial-of-service attack](https://en.wikipedia.org/wiki/Billion_laughs_attack) or the usage of external sources. We recommend to review and fix each listed error manually until the script no longer finds any validation errors.\n\n**Please delete the script again after you have used it.**\n\n### Workarounds\n\nIf you cannot update to Kirby 3.5.4, you can disable the upload of SVG and XML files in your [file blueprints](https://getkirby.com/docs/reference/panel/blueprints/file#accept) and validate or replace your already uploaded files once.\n\n### Credits\n\nThanks to @sreenathr10 for reporting the problem.", "id": "GHSA-qgp4-5qx6-548g", "modified": "2021-04-27T20:11:58Z", "published": "2021-04-30T17:30:06Z", "references": [ { "type": "WEB", "url": "https://github.com/getkirby/kirby/security/advisories/GHSA-qgp4-5qx6-548g" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-29460" }, { "type": "WEB", "url": "https://github.com/getkirby/kirby/releases/tag/3.5.4" }, { "type": "WEB", "url": "http://packetstormsecurity.com/files/162359/Kirby-CMS-3.5.3.1-Cross-Site-Scripting.html" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:L/A:N", "type": "CVSS_V3" } ], "summary": "Cross-site scripting (XSS) from unsanitized uploaded SVG files in Kirby" }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.