Skip to content

Instantly share code, notes, and snippets.

@Xib3rR4dAr
Last active February 23, 2022 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xib3rR4dAr/4b3ea7960914e23c3a875b973a5b37a3 to your computer and use it in GitHub Desktop.
Save Xib3rR4dAr/4b3ea7960914e23c3a875b973a5b37a3 to your computer and use it in GitHub Desktop.

WordPress Plugin Embed Swagger 1.0.0 - Reflected Cross-Site Scripting

Exploit TitleWordPress Plugin Embed Swagger 1.0.0 - Reflected Cross-Site Scripting
Exploit AuthorMuhammad Zeeshan (Xib3rR4dAr)
DateJanuary 21, 2022
Plugin LinkEmbed Swagger
Version1.0.0 (Latest)
Tested onWordpress 5.8.3
Vulnerable File:Line/wp-content/plugins/embed-swagger/swagger-iframe.php:59
Vulnerable Parameterurl
Proof of Concept/wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://"-alert(document.domain)-"
Google Dorkinurl:/wp-content/plugins/embed-swagger
CVECVE-2022-0381

Description

The shortcode provided by Embed Swagger plugin allows embedding Swagger json/yaml files into WordPress pages and posts. An iframe is used to host the external content, with some styling to mesh it with the host page or post. The external spec is rendered using Swagger UI. During pentest of a client's wordpress site, enumerated that plugin named Embed Swagger v1.0.0 is in use. It allowed to import Swagger files from external URLs via url parameter and displayed them. Tried XSS via malicious json/yaml file hosted on external server but it was not vulnerable. Downloaded plugin for a code review and found that in file embed-swagger/swagger-iframe.php, url parameter is reflected back in JavaScript context if input is a valid URL.

image

image

Function filter_var with second argument FILTER_VALIDATE_URL is used to check if URL is valid. A malicious URL such as http://example.com/?id="-alert(1)-" can be passed as input which will get reflected as url: "http://example.com/?id="-alert(document.domain)-"" in JavaScript context leading to XSS.

Vulnerable Code

Vulerable File: /wp-content/plugins/embed-swagger/swagger-iframe.php:59

Vulnerable Code:

...
8:	$url = $_GET['url'];
9:	$url = filter_var( $url, FILTER_VALIDATE_URL );
...
59:						url: "<?php echo $url; ?>",
...

Line 59 prints value of parameter url without escaping or encoding it properly.

Fix

Remove <?php echo $url; ?> from line 59. There is no need for this since value of url parameter is fetched from URL using JavaScript. Or urlencode $url on line 59

59:						url: "",

or

59:						url: "<?php echo urlencode($url); ?>",

Impact

An attacker can share a crafted URL with victim, which when clicked/visted by victim will allow an attacker to execute malicious JavaScript in victim's browser. If any logged in admin/user is targeted, it can be used to perform administrative tasks which can lead to Remote Code Execution.

Proof of Concept

Payload: xss://"-alert(document.domain)-"

PoC: http://127.0.0.1/wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://"-alert(document.domain)-"

image

image

@sh33lsh00k
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment