VDB
Sign up
HIGH7.5

GHSA-v65j-hff3-753c

Mediawiki EmbedVideo Extension has stored XSS via malformed src url with $wgEmbedVideoRequireConsent disabled

Quick fix

GHSA-v65j-hff3-753c — starcitizenwiki/embedvideo: upgrade to the fixed version with the command below.

composer require starcitizenwiki/embedvideo:^4.1.0

Details

### Summary With $wgEmbedVideoRequireConsent disabled (not the default), the urls for videos are passed into an iframe src attribute without sanitization. When given a malformed url or id, the src attribute can be escaped via double quotes, allowing for html/javascript injection.

### Details The iframe assembled [here](https://github.com/StarCitizenWiki/mediawiki-extensions-EmbedVideo/blob/a573a16d925ee0ea0d34b360856dc8ab0b88f822/includes/EmbedService/EmbedHtmlFormatter.php#L204-L208) adds the url from `getUrl()` as the src without sanitization. The id regex for the archiveorg service and the url regexes for the wistia and sharepoint services allow for double quotes to be introduced.

### PoC Using double quotes, the src attribute can be escaped. ``` <embedvideo service="archiveorg" id='a" onmouseover="alert(document.domain)" data-x="'></embedvideo> ```

### Impact When $wgEmbedVideoRequireConsent = false, any user able to edit a page can inject arbitrary JavaScript into an HTML event handler attribute (e.g. onfocus) via parameter. It requires no interaction (autofires via autofocus) and executes in the wiki origin for every visitor to the page.

Are you affected?

Enter the version of the package you're using.

Affected packages

Packagist/starcitizenwiki/embedvideo
Introduced in: 0Fixed in: 4.1.0
Fixcomposer require starcitizenwiki/embedvideo:^4.1.0

References