Joomla! is one of the world's most popular content management system (CMS) solutions. It enables users to build custom Web sites and powerful online applications. More than 3 percent of Web sites are running Joomla!, and it accounts for more than 9 percent of CMS market share.
As of November 2016, Joomla! had been downloaded over 78 million times. Over 7,800 free and commercial extensions are also currently available from the official Joomla! Extension Directory, and more are available from other sources.
This year, as a FortiGuard researcher I discovered and reported two Cross-Site Scripting (XSS) vulnerabilities in Joomla!. They are identified as CVE-2017-7985 and CVE-2017-7986. Joomla! patched them this week. These vulnerabilities affect Joomla! versions 1.5.0 through 3.6.5. They exist because these versions of Joomla! fail to sanitize malicious user input when users post or edit an article. Remote attacker could exploit them to run malicious code in victims’ browser, potentially allowing the attacker to gain control of the victim’s Joomla! account. If the victim has higher permission, like system administrator, the remote attacker could gain full control of the web server.
In this blog, I will share the details of these vulnerabilities.
### Background
Joomla! has its own XSS filters. For example, a user with post permission is not allowed to use full HTML elements. When this user posts an article with HTML attributes, Joomla! will sterilize dangerous code like “javascript:alert()”, “background:url()” and so on. Joomla! has two ways to achieve this sterilization. On the client side, it uses the editor called “TinyMCE.” On the server side, it sanitizes the request before storing it on the server.
### Analysis
To demonstrate these vulnerabilities, the test account ‘yzy1’ is created. It has author permission, which is not allowed to use full HTML elements.
To bypass the client side sterilization, the attacker can use a network intercept tool like Burp Suite or just change the default editor to other Joomla! built-in editors, like CoodeMirror or None, as shown in Figure 1.
![Figure1](https://d3gpjj9d20n0p3.cloudfront.net/ngblog/uploads/files/JoomlaCoreXSS001.png)
Figure 1. Bypassing the client side XSS filter
On the server side, I found two ways to bypass the XSS filters. They are identified as CVE-2017-7985 and CVE-2017-7986.
### CVE-2017-7985
The Joomla! server side XSS filter sterilizes dangerous code and saves the safe characters. For example, when we post the following code with the test account, Joomla! sterilizes it by double quoting the , deleting the , and adding safe links to the URLs, as shown in Figure 2.
![Figure2](https://d3gpjj9d20n0p3.cloudfront.net/ngblog/uploads/files/JoomlaCoreXSS003.png)
Figure 2. Joomla! XSS filter
But an attacker could take advantage of the filter by trying to let the filter to reconstruct the code and rebuild the scripts. For example, we can add the code Note that the double quote in is the CORRECT DOUBLE QUOTATION MARK, as shown in Figure 3.
![Figure3](https://d3gpjj9d20n0p3.cloudfront.net/ngblog/uploads/files/JoomlaCoreXSS005.png)
Figure 3. Inserting the PoC for CVE-2017-7985
When victims access the post, regardless of whether it’s published or not, the inserted XSS code will be triggered in both the main page and the administrator page, as shown in Figures 4 and 5.
![Figure4](https://d3gpjj9d20n0p3.cloudfront.net/ngblog/uploads/files/JoomlaCoreXSS007.jpg)
Figure 4. CVE-2017-7985 PoC triggered in the home page
![Figure5](https://d3gpjj9d20n0p3.cloudfront.net/ngblog/uploads/files/JoomlaCoreXSS009.png)
Figure 5. CVE-2017-7985 PoC triggered in the administrator page
### Solution
All users of Joomla! should upgrade to the latest version immediately. Additionally, organizations that have deployed Fortinet IPS solutions are already protected from these vulnerabilities with the signatures Joomla!.Core.Article.Post.Colon.Char.XSS and Joomla!.Core.Article.Post.Quote.Char.XSS.
暂无评论