<?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/"><channel><title>Rest-Api — CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/tags/rest-api/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata — refreshed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Thu, 23 Apr 2026 10:00:00 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/tags/rest-api/feed.xml" rel="self" type="application/rss+xml"/><item><title>WeKan Missing Authorization Vulnerability in Integration REST API</title><link>https://feed.craftedsignal.io/briefs/2026-04-wekan-missing-auth/</link><pubDate>Thu, 23 Apr 2026 10:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-04-wekan-missing-auth/</guid><description>WeKan before 8.35 contains a missing authorization vulnerability in the Integration REST API endpoints, allowing authenticated board members to perform administrative actions without proper privilege verification, potentially leading to unauthorized data access and modification.</description><content:encoded><![CDATA[<p>WeKan, a collaborative Kanban board application, is vulnerable to a missing authorization issue in versions prior to 8.35. This flaw resides within the Integration REST API endpoints, where authenticated board members can execute administrative actions without sufficient privilege validation.  An attacker, if they are an authenticated user, can exploit this vulnerability to enumerate integrations, including webhook URLs, create new integrations, modify or delete existing integrations, and manage integration activities. The root cause is insufficient authorization checks within the JsonRoutes REST handlers. Successful exploitation can lead to unauthorized access to sensitive information and modification of board configurations.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker gains valid credentials for a WeKan board member account.</li>
<li>The attacker authenticates to the WeKan application via the standard login procedure.</li>
<li>The attacker sends a crafted HTTP request to the <code>/api/integration</code> endpoint without proper administrative privileges.</li>
<li>Due to missing authorization checks, the request is processed, and the attacker is able to enumerate existing integrations, including sensitive webhook URLs.</li>
<li>The attacker crafts another HTTP request to the <code>/api/integration</code> endpoint to create a new, malicious integration (e.g., a webhook that sends data to an external attacker-controlled server).</li>
<li>The attacker modifies existing integrations to redirect data flow to attacker-controlled endpoints.</li>
<li>The attacker deletes legitimate integrations, disrupting board functionality.</li>
<li>The attacker manages integration activities, potentially triggering malicious actions or gaining further information.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of this vulnerability allows an attacker to perform administrative actions on WeKan boards without proper authorization. This can lead to the exposure of sensitive webhook URLs, unauthorized modification or deletion of integrations, and the creation of malicious integrations for data exfiltration or disruption. The CVSS v3.1 score of 8.3 indicates a high severity vulnerability with significant potential for data compromise and system impact. The number of affected WeKan installations is currently unknown, but organizations using WeKan for project management and collaboration are at risk.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade WeKan to version 8.35 or later to patch CVE-2026-41454, addressing the missing authorization vulnerability as detailed in the <a href="#references">reference links</a>.</li>
<li>Deploy the Sigma rule &ldquo;Detect WeKan Integration API Abuse&rdquo; to identify potential exploitation attempts against the Integration REST API endpoints, monitoring webserver logs for unusual API requests.</li>
<li>Review and restrict access rights for WeKan board members, ensuring that only authorized personnel have administrative privileges to minimize the attack surface as outlined in the <a href="#overview">overview</a>.</li>
<li>Monitor webserver logs for requests to <code>/api/integration</code> with methods like POST, PUT, and DELETE originating from non-admin users.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>wekan</category><category>missing-authorization</category><category>rest-api</category><category>privilege-escalation</category></item><item><title>666ghj MiroFish REST API Authentication Bypass (CVE-2026-7042)</title><link>https://feed.craftedsignal.io/briefs/2024-01-mirofish-auth-bypass/</link><pubDate>Wed, 03 Jan 2024 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-mirofish-auth-bypass/</guid><description>A missing authentication vulnerability (CVE-2026-7042) exists in 666ghj MiroFish up to version 0.1.2, allowing remote attackers to bypass authentication via manipulation of the REST API Endpoint's create_app function.</description><content:encoded><![CDATA[<p>A critical authentication bypass vulnerability, tracked as CVE-2026-7042, has been identified in 666ghj MiroFish software up to version 0.1.2. The vulnerability lies within the <code>create_app</code> function of the <code>backend/app/__init__.py</code> file, which manages the REST API Endpoint. A remote attacker can exploit this flaw by manipulating specific parameters within API requests, effectively bypassing authentication mechanisms. This allows unauthorized access to sensitive functionalities and data. Public exploits are available, increasing the risk of widespread exploitation. The vendor was notified, but has not yet responded.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attacker identifies a vulnerable MiroFish instance running version 0.1.2 or earlier.</li>
<li>The attacker crafts a malicious HTTP request targeting the REST API Endpoint.</li>
<li>The crafted request manipulates parameters intended for the <code>create_app</code> function, specifically designed to bypass authentication checks.</li>
<li>The vulnerable <code>create_app</code> function fails to properly validate the request due to the missing authentication check.</li>
<li>The application grants unauthorized access to protected resources or functionalities.</li>
<li>The attacker performs unauthorized actions, such as data exfiltration, modification, or deletion, depending on the exposed API endpoints.</li>
<li>The attacker leverages the initial access to further compromise the system or pivot to other internal resources.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-7042 allows an attacker to bypass authentication controls in MiroFish applications. This can lead to unauthorized access to sensitive data, modification of application settings, or complete system compromise. The lack of authentication on the REST API endpoint can have severe implications for data confidentiality, integrity, and availability. Given the availability of a public exploit, affected organizations are at immediate risk.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Monitor web server logs for suspicious HTTP requests targeting the REST API Endpoint with unusual parameters, using the provided Sigma rule that detects anomalous HTTP methods in webserver logs.</li>
<li>Apply any available patches or updates from 666ghj to address CVE-2026-7042 immediately.</li>
<li>Review the affected <code>backend/app/__init__.py</code> file for authentication logic flaws and implement necessary security measures.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>cve-2026-7042</category><category>authentication-bypass</category><category>rest-api</category></item></channel></rss>