<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:webfeeds="http://webfeeds.org/rss/1.0"><channel><title>WsgiDAV (&lt;= 4.3.4) - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/products/wsgidav--4.3.4/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata. Fed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Fri, 28 Aug 2026 21:17:37 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/products/wsgidav--4.3.4/feed.xml" rel="self" type="application/rss+xml"/><image><url>https://feed.craftedsignal.io/favicon-32x32.png</url><title>CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/</link><width>32</width><height>32</height></image><webfeeds:icon>https://feed.craftedsignal.io/favicon.svg</webfeeds:icon><item><title>Blind SQL Injection in WsgiDAV MySQLBrowserProvider</title><link>https://feed.craftedsignal.io/briefs/2026-08-wsgidav-sql-injection/</link><pubDate>Fri, 28 Aug 2026 21:17:37 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-08-wsgidav-sql-injection/</guid><description>The WsgiDAV MySQLBrowserProvider sample module is vulnerable to blind SQL injection via unsanitized URL input, allowing unauthenticated attackers to extract database content.</description><content:encoded><![CDATA[<p>The WsgiDAV project contains a sample module named <code>MySQLBrowserProvider</code> that is vulnerable to blind SQL injection (CVE-2026-55509). The vulnerability stems from improper input sanitization where the record key provided in a URL request is directly concatenated into a SQL <code>WHERE</code> clause. While the provider is not enabled by default, deployments that explicitly configure it to back a share are exposed.</p>
<p>Because the provider performs an existence check during standard <code>GET</code> requests, an attacker does not require authentication or write access to exploit the flaw. By injecting SQL conditions into the URL path, an attacker can use a boolean status-code oracle - where a successful query result or error returns a 500 status and a non-existent record returns a 404 - to perform bit-by-bit data extraction from the backing database. This allows for the exfiltration of sensitive table data reachable by the database user account configured in the provider.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>Attacker identifies a WsgiDAV instance exposing a share backed by <code>MySQLBrowserProvider</code>.</li>
<li>Attacker crafts a malicious URL path formatted as <code>/db/&lt;table_name&gt;/&lt;injected_sql_key&gt;</code>.</li>
<li>Attacker uses a boolean SQL injection payload, such as <code>0' OR (SELECT ASCII(MID((QUERY),1,1))&gt;100) OR '1'='2</code> in the key parameter.</li>
<li>The <code>MySQLBrowserProvider</code> receives the request and concatenates the injected string directly into the <code>SELECT id FROM table WHERE id = '&lt;injected_key&gt;'</code> query.</li>
<li>The backend database executes the injected SQL.</li>
<li>The application returns an HTTP 500 if the injected condition is true (due to internal state handling) or an HTTP 404 if false.</li>
<li>Attacker iteratively automates these requests to exfiltrate arbitrary data from the database.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation leads to unauthorized access and exfiltration of sensitive information contained within the MySQL database linked to the WsgiDAV share. The scope of impact is limited to the privileges of the database user configured in the provider. As this is an unauthenticated vector on any share using the provider, it represents a high risk for data confidentiality in affected deployments.</p>
<h2 id="recommendation">Recommendation</h2>
<p>Prioritize the remediation of any WsgiDAV instance utilizing the <code>MySQLBrowserProvider</code>.</p>
<ul>
<li>Disable the <code>MySQLBrowserProvider</code> module in the WsgiDAV configuration if it is not strictly required.</li>
<li>Upgrade WsgiDAV to a version where this vulnerability is resolved.</li>
<li>Implement access control lists (ACLs) or web-level authentication for any share using the <code>MySQLBrowserProvider</code> to prevent unauthenticated access.</li>
<li>Review web access logs for requests to paths matching <code>/db/*/*</code> containing SQL syntax characters (e.g., <code>'</code>, <code>--</code>, <code>UNION</code>, <code>SELECT</code>).</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category></item></channel></rss>