A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-41143

CVE-2026-41143: YesWiki Bazar Module SQLi Vulnerability

CVE-2026-41143 is a SQL injection vulnerability in YesWiki bazar module that allows attackers to execute malicious SQL queries. This post covers the technical details, affected versions, impact, and mitigation steps.

Published: May 7, 2026

CVE-2026-41143 Overview

CVE-2026-41143 is a SQL injection vulnerability in YesWiki, a PHP-based wiki system. The flaw exists in the bazar module's tools/bazar/services/EntryManager.php file at line 704. The $data['id_fiche'] value, sourced directly from $_POST['id_fiche'], is concatenated into a raw SQL query without sanitization or parameterization. Authenticated attackers can manipulate the id_fiche POST parameter to inject arbitrary SQL statements. The issue affects all YesWiki versions prior to 4.6.1 and is tracked under [CWE-89]. The maintainers patched the vulnerability in version 4.6.1.

Critical Impact

Authenticated attackers can execute arbitrary SQL queries against the YesWiki database, leading to data theft, modification, and potential takeover of the wiki application.

Affected Products

  • YesWiki versions prior to 4.6.1
  • YesWiki bazar module (tools/bazar/services/EntryManager.php)
  • PHP-based deployments running vulnerable YesWiki releases

Discovery Timeline

  • 2026-05-07 - CVE CVE-2026-41143 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-41143

Vulnerability Analysis

The vulnerability resides in YesWiki's bazar module, which manages structured content entries called "fiches." The EntryManager.php service handles entry retrieval and update operations. At line 704, the code uses string concatenation to assemble a SQL query containing the id_fiche value supplied by the client through the $_POST superglobal.

Because the input bypasses both prepared statements and escaping routines, an attacker can break out of the intended query context. Injected payloads are executed in the database session of the YesWiki application user. The issue is classified as Improper Neutralization of Special Elements used in an SQL Command [CWE-89].

Root Cause

The root cause is direct concatenation of untrusted user input into a raw SQL query. The maintainers did not apply parameter binding through PDO or escape the id_fiche value before passing it to the database driver. This pattern violates secure coding guidance for PHP database access and exposes every query path that reaches line 704 of EntryManager.php.

Attack Vector

Exploitation requires network access to the YesWiki instance and low-privilege authentication, since the bazar entry endpoints require an authenticated session. An attacker submits a crafted id_fiche value in a POST request to a bazar endpoint that invokes EntryManager. The injected SQL executes against the backend database. Successful exploitation can extract user credentials, alter wiki content, or escalate impact through stacked queries depending on database configuration. See the GitHub Security Advisory GHSA-f58v-p6j9-24c2 for advisory details.

Detection Methods for CVE-2026-41143

Indicators of Compromise

  • POST requests to bazar endpoints containing SQL metacharacters such as single quotes, UNION, SELECT, or comment sequences (--, /*) within the id_fiche parameter.
  • Web server access logs showing repeated requests to tools/bazar/ paths from a single source with abnormal payload lengths.
  • Database error messages or unexpected SELECT/UNION activity tied to the YesWiki application user.

Detection Strategies

  • Enable database query logging and alert on queries referencing bazar_fiches tables that contain unbalanced quotes or UNION clauses.
  • Deploy a web application firewall rule that inspects the id_fiche POST parameter for non-numeric or SQL keyword content.
  • Correlate authentication events with high-volume bazar entry requests to identify low-privilege accounts attempting injection.

Monitoring Recommendations

  • Monitor outbound database traffic for anomalous result-set sizes following bazar requests.
  • Track changes to YesWiki user tables and permission records, since these are common SQL injection targets.
  • Review PHP error logs for PDOException or MySQL syntax errors originating from EntryManager.php.

How to Mitigate CVE-2026-41143

Immediate Actions Required

  • Upgrade YesWiki to version 4.6.1 or later. Refer to the GitHub Release v4.6.1 notes.
  • Audit existing bazar entries and user accounts for unauthorized changes that may indicate prior exploitation.
  • Rotate database credentials and YesWiki account passwords if exploitation is suspected.

Patch Information

The YesWiki maintainers released version 4.6.1 to address the SQL injection in tools/bazar/services/EntryManager.php. The patch replaces direct concatenation of $data['id_fiche'] with parameterized query handling. Administrators should apply the upgrade through standard YesWiki update procedures and verify the installed version after deployment. Patch sources are available in the GitHub Security Advisory GHSA-f58v-p6j9-24c2.

Workarounds

  • Restrict access to YesWiki to trusted authenticated users until the upgrade is applied.
  • Place a web application firewall in front of YesWiki and block POST requests with non-numeric id_fiche values.
  • Apply least-privilege controls on the YesWiki database account, removing rights to schemas not required by the application.
bash
# Verify installed YesWiki version after upgrade
grep -R "YESWIKI_VERSION" /var/www/yeswiki/includes/constants.php

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechYeswiki

  • SeverityHIGH

  • CVSS Score8.8

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Release v4.6.1

  • GitHub Security Advisory GHSA-f58v-p6j9-24c2
  • Related CVEs
  • CVE-2026-34598: YesWiki Stored XSS Vulnerability

  • CVE-2024-51478: Yeswiki Auth Bypass Vulnerability

  • CVE-2025-31131: Yeswiki Path Traversal Vulnerability

  • CVE-2025-46347: Yeswiki RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English