<?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>Fecommunity - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/fecommunity/</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>Thu, 24 Sep 2026 01:57:11 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/fecommunity/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>SQL Injection in ReactPress API via Unsanitized Query Parameter Names</title><link>https://feed.craftedsignal.io/briefs/2026-09-reactpress-sqli/</link><pubDate>Thu, 24 Sep 2026 01:57:11 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-09-reactpress-sqli/</guid><description>An unauthenticated SQL injection vulnerability in ReactPress allows attackers to exfiltrate database contents via malicious HTTP query parameter keys in API requests.</description><content:encoded><![CDATA[<p>ReactPress versions 3.6.0 and earlier contain a critical SQL injection vulnerability (CVE-2026-61685) due to improper handling of dynamic column names within its API. The application uses unsanitized HTTP query parameter names directly in TypeORM QueryBuilder conditions, specifically constructing identifiers like <code>article.${key}</code>. While TypeORM parameterizes values, it does not parameterize column identifiers, allowing an attacker to inject SQL syntax through crafted query keys. This vulnerability affects multiple endpoints including /api/article, /api/comment, /api/file, /api/page, and /api/Knowledge. Successful exploitation allows an unauthenticated remote attacker to perform blind SQL injection, leading to the unauthorized exfiltration of sensitive data such as user credentials, system settings, and proprietary content.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>Attacker identifies a ReactPress instance exposed to the internet.</li>
<li>Attacker inspects the API structure and identifies susceptible GET endpoints (/api/article, /api/comment, /api/file, /api/page, /api/Knowledge).</li>
<li>Attacker crafts an HTTP GET request containing malicious SQL fragments within a query parameter key (e.g., <code>?some_col=value</code> is replaced with <code>?1=1;--=value</code>).</li>
<li>The ReactPress server parses the query parameter key and dynamically constructs a TypeORM QueryBuilder statement using the malicious key as a column identifier.</li>
<li>The resulting unsanitized query is sent to the underlying database driver.</li>
<li>The database executes the injected SQL commands alongside legitimate queries.</li>
<li>Attacker uses boolean-based or time-based blind SQL injection techniques to extract data character by character based on the server response or latency.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation results in unauthorized access to the application database. An attacker can exfiltrate sensitive information, including user records, system configurations, API keys, and article contents. The vulnerability is highly impactful due to its unauthenticated nature, allowing complete compromise of the database layer.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade to <code>@fecommunity/reactpress</code> version 3.7.0 or higher immediately to patch CVE-2026-61685.</li>
<li>If upgrading is not immediately possible, implement a WAF or API gateway rule to inspect and reject incoming HTTP GET requests that contain suspicious SQL syntax or illegal characters within query parameter keys.</li>
<li>Implement strict allow-listing for all query parameters accepted by the API endpoints listed in this brief.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>sqli</category><category>vulnerability</category><category>api-security</category></item></channel></rss>