Skip to main content

YesWiki CVE-2026-52774

MEDIUM
Basic XSS (CWE-80)
2026-07-09 https://github.com/YesWiki/yeswiki GHSA-r5xw-gcgw-hwp5
6.1
CVSS 3.1 · Vendor: https://github.com/YesWiki/yeswiki
Share

Severity by source

Vendor (https://github.com/YesWiki/yeswiki) PRIMARY
6.1 MEDIUM
AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
vuln.today AI
6.1 MEDIUM

Network-reachable with no auth (PR:N, AV:N), but victim must open crafted URL (UI:R); Scope:Changed captures XSS crossing the server-to-browser boundary; no availability impact on either system.

3.1 AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
4.0 AV:N/AC:L/AT:P/PR:N/UI:A/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N

Primary rating from Vendor (https://github.com/YesWiki/yeswiki).

CVSS VectorVendor: https://github.com/YesWiki/yeswiki

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
Required
Scope
Changed
Confidentiality
Low
Integrity
Low
Availability
None

Lifecycle Timeline

1
Analysis Generated
Jul 09, 2026 - 21:59 vuln.today

DescriptionCVE.org

Summary

YesWiki's Bazar widget handler reflects the id GET parameter into HTML attributes using strip_tags() only. Because strip_tags() does not escape double quotes, an attacker can break out of the attribute value, inject an event handler such as onmouseover, and execute arbitrary JavaScript in the victim's browser.

This issue is reachable without authentication. During validation, the vulnerable widget route returned the injected HTML for both /HomePage/widget?id=... and /NoSuchPage/widget?id=..., which shows that no login, no page ownership, no edit rights, and not even a valid page tag were required. The only routing prerequisite observed was that the Bazar extension is enabled and the request includes an id parameter.

Details

The primary sink is in tools/bazar/presentation/templates/widget.tpl.html around lines 4-7, where $_GET['id'] is inserted into the data-formid attribute:

php
data-formid="<?php echo strip_tags($_GET['id']); ?>"

strip_tags() is not an output-encoding function. It removes HTML tags, but it does not escape characters such as double quotes, so an attacker can terminate the data-formid attribute and inject new attacker-controlled attributes.

The route is served by tools/bazar/handlers/__WidgetHandler.php around lines 14-26, which only checks whether $_GET['id'] is present:

php
if (!isset($_GET['id'])) {
    return null;
}

No HasAccess('read'), HasAccess('write'), or authentication check is performed before the vulnerable template is rendered.

There is also a second reflection path in the same handler. The handler builds:

php
$urlParams = 'id=' . strip_tags($_GET['id']) . ...

and then places the resulting value into the widget template's data-iframeUrl attribute:

php
data-iframeUrl="<?php echo $GLOBALS['wiki']->href('bazariframe', '', $urlparams, false); ?>"

During validation, a single payload injected into id was reflected into both data-formid and data-iframeUrl, which confirms that the handler exposes multiple attribute-level sinks from the same unsafely handled input.

This issue maps to CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting').

PoC

  1. Set up a vulnerable YesWiki instance with the bundled Bazar extension enabled. This was validated locally on the official doryphore 4.6.5 release.
  2. Confirm the minimum access requirements:
  • No account is required.
  • No read or write permission on a specific page is required.
  • No valid existing page tag is required.
  • No valid Bazar form identifier is required.
  • The only observed requirements were that the Bazar widget handler is present and the request includes an id parameter.
  1. Request the widget handler with an attribute-breaking payload in id, for example:
text
http://127.0.0.1:8085/NoSuchPage/widget?id=%22%20onmouseover=%22alert(1)%22%20x=%22
  1. Open the URL in a browser as an unauthenticated visitor.
  2. Observe that the server returns HTTP 200 and renders the Bazar widget page even though the page tag is arbitrary.
  3. Inspect the returned HTML. The response contains attacker-controlled attributes in the widget root element:
html
<div id="widgetapp" v-cloak
  data-formid="" onmouseover="alert(1)" x=""
  ...
  data-iframeUrl="http://127.0.0.1:8085/NoSuchPage/bazariframe&id=" onmouseover="alert(1)" x=""
>
  1. Move the mouse over the widgetapp element or otherwise trigger the injected event handler.
  2. The browser executes the injected JavaScript in the YesWiki origin.

<img width="1600" height="838" alt="image" src="https://github.com/user-attachments/assets/de592586-a6ee-48f4-bbde-137ab07aaa71" />

Impact

This is a reflected XSS vulnerability in the Bazar widget handler with very low attacker prerequisites.

The practical access model is:

  • The attacker only needs to send a crafted public URL.
  • The victim does not need to authenticate.
  • The attacker does not need edit rights, ownership, or a valid page tag.
  • The route only needs to be reachable on a YesWiki instance with Bazar enabled.

An attacker may be able to:

  • Execute arbitrary JavaScript in the victim's browser.
  • Steal browser-accessible sensitive data.
  • Perform actions in the victim's session if the victim is logged in.
  • Target public visitors and authenticated users alike because the route is reachable without access-control checks.

AnalysisAI

Reflected XSS in YesWiki's Bazar widget handler allows remote unauthenticated attackers to execute arbitrary JavaScript in a victim's browser by sending a crafted URL containing a double-quote-breaking payload in the id GET parameter. The handler at tools/bazar/handlers/__WidgetHandler.php performs no authentication or access-control check before rendering the vulnerable template, and strip_tags() is misused as an output encoder - it removes tags but leaves double quotes intact, enabling attribute injection across two sinks (data-formid and data-iframeUrl). A working proof-of-concept was validated on the official doryphore 4.6.5 release; no public exploit identification as KEV-confirmed active exploitation exists at time of analysis, but a complete PoC with exact payloads is publicly available as part of the advisory.

Technical ContextAI

YesWiki is a PHP-based wiki platform (CPE: pkg:composer/yeswiki_yeswiki); the vulnerable component is its bundled Bazar extension, a form and data-management module. The root cause maps to CWE-80 (Improper Neutralization of Script-Related HTML Tags in a Web Page), a child of CWE-79, and arises from a category error: strip_tags() is a tag-stripping function, not an output encoder. The primary sink is in tools/bazar/presentation/templates/widget.tpl.html (lines 4-7) where <?php echo strip_tags($_GET['id']); ?> is placed directly inside an HTML attribute value delimited by double quotes - a double quote in the payload terminates the attribute and opens space for arbitrary attacker-controlled attributes such as event handlers. A secondary sink is in the same handler where the unsanitized id value is interpolated into a URL string then placed into the data-iframeUrl attribute, meaning a single payload produces two independent injection points. The route handler (__WidgetHandler.php lines 14-26) gates only on the presence of $_GET['id'], with no HasAccess('read') or session check.

RemediationAI

Apply the upstream fix committed at https://github.com/YesWiki/yeswiki/commit/1aa2710c7505630b858f2142a65f9441bfaba2b2; the exact released patched version number is not confirmed in available data - monitor the GitHub advisory GHSA-r5xw-gcgw-hwp5 for an official release tag. The correct code-level fix is to replace strip_tags($_GET['id']) with htmlspecialchars($_GET['id'], ENT_QUOTES, 'UTF-8') in both the template and the handler's URL-building logic. If patching is not immediately possible, disabling the Bazar extension removes the vulnerable /widget route entirely and is the most effective compensating control, with the trade-off of losing all Bazar functionality. Alternatively, a WAF rule blocking requests where id contains double quotes, angle brackets, or event-handler keywords (on*=) can reduce exposure, but WAF bypass is feasible and this does not substitute for a code fix.

More in PHP

View all
CVE-2019-11043 CRITICAL POC
9.8 Oct 28

In PHP versions 7.1.x below 7.1.33, 7.2.x below 7.2.24 and 7.3.x below 7.3.11 in certain configurations of FPM setup it

CVE-2012-1823 CRITICAL POC
9.8 May 11

sapi/cgi/cgi_main.c in PHP before 5.3.12 and 5.4.x before 5.4.2, when configured as a CGI script (aka php-cgi), does not

CVE-2016-1555 CRITICAL POC
9.8 Apr 21

(1) boardData102.php, (2) boardData103.php, (3) boardDataJP.php, (4) boardDataNA.php, and (5) boardDataWW.php in Netgear

CVE-2018-11138 CRITICAL POC
9.8 May 31

The '/common/download_agent_installer.php' script in the Quest KACE System Management Appliance 8.0.318 is accessible by

CVE-2024-11680 CRITICAL POC
9.8 Nov 26

ProjectSend versions prior to r1720 are affected by an improper authentication vulnerability. Rated critical severity (C

CVE-2025-49113 CRITICAL POC
9.9 Jun 02

Roundcube Webmail contains a critical PHP object deserialization vulnerability (CVE-2025-49113, CVSS 9.9) that allows au

CVE-2017-9841 CRITICAL POC
9.8 Jun 27

Util/PHP/eval-stdin.php in PHPUnit before 4.8.28 and 5.x before 5.6.3 allows remote attackers to execute arbitrary PHP c

CVE-2025-0108 HIGH POC
8.8 Feb 12

Palo Alto Networks PAN-OS management web interface contains an authentication bypass allowing unauthenticated attackers

CVE-2021-25298 HIGH POC
8.8 Feb 15

Nagios XI version xi-5.7.5 is affected by OS command injection. Rated high severity (CVSS 8.8), this vulnerability is re

CVE-2021-25296 HIGH POC
8.8 Feb 15

Nagios XI version xi-5.7.5 is affected by OS command injection. Rated high severity (CVSS 8.8), this vulnerability is re

CVE-2013-4983 CRITICAL POC
10.0 Sep 10

The get_referers function in /opt/ws/bin/sblistpack in Sophos Web Appliance before 3.7.9.1 and 3.8 before 3.8.1.1 allows

CVE-2023-6553 CRITICAL POC
9.8 Dec 15

The Backup Migration plugin for WordPress is vulnerable to Remote Code Execution in all versions up to, and including, 1

Share

CVE-2026-52774 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy