<?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>JoomGallery (&lt;= 4.3.0) - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/products/joomgallery--4.3.0/</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>Sun, 23 Aug 2026 16:57:04 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/products/joomgallery--4.3.0/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>Unauthenticated Access Control Bypass in JoomGallery</title><link>https://feed.craftedsignal.io/briefs/2026-08-joomgallery-bypass/</link><pubDate>Sun, 23 Aug 2026 16:57:04 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-08-joomgallery-bypass/</guid><description>JoomGallery versions 4.3.0 and earlier are vulnerable to an access control bypass via the JSON view component, allowing unauthenticated attackers to retrieve protected image metadata and bypass password gates to download private content.</description><content:encoded><![CDATA[<p>JoomGallery versions 4.3.0 and earlier suffer from an improper access control vulnerability (CVE-2026-66916) in the <code>JsonView.php</code> component. While the HTML-based view correctly enforces password protection for gallery categories, the JSON interface (<code>format=json</code>) fails to implement the required <code>pw_protected</code> flag checks. This oversight permits unauthenticated remote attackers to query any public-access category ID and receive a full JSON object containing category titles, descriptions, and randomized file paths for protected images. Because JoomGallery relies on the obscurity of these randomized filenames for its security model, the leakage of filenames allows attackers to download the underlying protected images directly from the web server's static directory. This vulnerability affects JoomGallery installations running on Joomla, as the framework does not propagate access checks across different view formats.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>Attacker identifies a JoomGallery installation and identifies target category IDs, which are sequential and easily enumerated.</li>
<li>Attacker crafts an HTTP GET request to the target component: <code>index.php?option=com_joomgallery&amp;view=category&amp;format=json&amp;id=[ID]</code>.</li>
<li>The web server routes the request to <code>site/com_joomgallery/src/View/Category/JsonView.php</code>.</li>
<li>The application logic executes <code>getImages()</code> without verifying if the requested category is password protected.</li>
<li>The application serializes the category's private data, including randomized full filenames, into a JSON response.</li>
<li>The attacker receives the JSON response containing the secret image filenames.</li>
<li>The attacker constructs a direct request to the static file path: <code>/images/joomgallery/originals/[filename]</code>.</li>
<li>The web server serves the protected image directly, completing the unauthorized access.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation allows for the full disclosure of private gallery metadata and the unauthorized download of password-protected images. Since categories are enumerable via ID, an attacker can systematically harvest all content from any password-protected, public-access category. This vulnerability impacts all users of JoomGallery versions 4.3.0 and earlier until upgraded to 4.4.0.</p>
<h2 id="recommendation">Recommendation</h2>
<p>Prioritized, concrete actions for detection engineering teams:</p>
<ul>
<li>Upgrade JoomGallery to version 4.4.0 immediately to address CVE-2026-66916.</li>
<li>Implement web server access controls or WAF rules to block access to the <code>/images/joomgallery/originals/</code> directory from external requests.</li>
<li>Deploy the Sigma rules below to detect attempts to access the vulnerable JSON view endpoint.</li>
<li>Audit existing JoomGallery categories to ensure sensitive images are not stored in directories exposed via direct web requests.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category></item></channel></rss>