<?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>Grokability — CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/grokability/</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, 08 May 2026 23:04:36 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/grokability/feed.xml" rel="self" type="application/rss+xml"/><item><title>Snipe-IT File Upload Vulnerability Leads to Remote Code Execution (CVE-2026-37709)</title><link>https://feed.craftedsignal.io/briefs/2024-01-snipeit-file-upload-rce/</link><pubDate>Fri, 08 May 2026 23:04:36 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-snipeit-file-upload-rce/</guid><description>Snipe-IT versions prior to 8.4.1 are vulnerable to remote code execution due to insecure permissions on file uploads, where an attacker can upload arbitrary files and execute code on the server.</description><content:encoded><![CDATA[<p>Snipe-IT, a web-based IT asset management system, is vulnerable to a critical file upload vulnerability (CVE-2026-37709) affecting versions up to 8.4.0. This vulnerability stems from insufficient permission checks in the <code>app/Http/Controllers/Api/UploadedFilesController.php</code> component. Specifically, the API endpoint <code>/api/v1/{object_type}/{id}/files</code> allows users with &ldquo;view&rdquo; permissions, rather than the necessary &ldquo;write&rdquo; permissions, to upload files. Successful exploitation of this vulnerability can lead to arbitrary code execution on the server. The vulnerability was patched after the 2026-03-10 commit 676a9958 and released in version 8.4.1. This poses a significant risk to organizations using vulnerable Snipe-IT instances, potentially allowing attackers to compromise the entire system.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker identifies a vulnerable Snipe-IT instance running a version prior to 8.4.1.</li>
<li>The attacker authenticates to the Snipe-IT instance with user credentials that have &ldquo;view&rdquo; permissions for assets, consumables, or other managed objects.</li>
<li>The attacker crafts a malicious HTTP POST request to the <code>/api/v1/{object_type}/{id}/files</code> endpoint, replacing <code>{object_type}</code> and <code>{id}</code> with valid values for an existing asset or consumable.</li>
<li>The POST request includes a file containing malicious code, such as a PHP webshell, disguised as a seemingly harmless file type (e.g., image).</li>
<li>The Snipe-IT application, due to insufficient permission checks, accepts the file upload and stores it on the server.</li>
<li>The attacker determines the full path to the uploaded file on the server.</li>
<li>The attacker crafts a new HTTP request to execute the uploaded file, triggering the malicious code.</li>
<li>The attacker achieves remote code execution on the Snipe-IT server, potentially gaining full control of the system and sensitive data.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-37709 can lead to complete compromise of the Snipe-IT server. An attacker can gain unauthorized access to sensitive asset information, modify inventory data, and potentially pivot to other systems within the network. Given the critical nature of asset management systems, this vulnerability poses a severe risk to organizations of all sizes and across various sectors. The attacker could potentially steal intellectual property, disrupt operations, or launch further attacks from the compromised server.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade Snipe-IT installations to version 8.4.1 or later to remediate CVE-2026-37709, as this version contains the necessary permission checks in the <code>app/Http/Controllers/Api/UploadedFilesController.php</code> component.</li>
<li>Deploy the Sigma rule &ldquo;Detect CVE-2026-37709 Exploitation — SnipeIT Malicious File Upload&rdquo; to detect suspicious POST requests to the <code>/api/v1/{object_type}/{id}/files</code> endpoint.</li>
<li>Monitor web server logs for HTTP POST requests to the <code>/api/v1/{object_type}/{id}/files</code> endpoint with filenames that contain suspicious extensions or patterns to identify potential exploitation attempts.</li>
</ul>
]]></content:encoded><category domain="severity">critical</category><category domain="type">advisory</category><category>remote code execution</category><category>file upload</category><category>insecure permissions</category><category>asset management</category><category>CVE-2026-37709</category></item><item><title>Snipe-IT Privilege Escalation via API Permissions Assignment (CVE-2026-44832)</title><link>https://feed.craftedsignal.io/briefs/2024-01-03-snipeit-privesc/</link><pubDate>Wed, 03 Jan 2024 18:22:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-03-snipeit-privesc/</guid><description>An authenticated user with limited 'users.edit' permissions can escalate their privileges to 'admin' in Snipe-IT versions before 8.4.1 by manipulating the permissions array in a PATCH request to the API, as tracked by CVE-2026-44832.</description><content:encoded><![CDATA[<p>Snipe-IT, a web-based IT asset management system, is susceptible to a privilege escalation vulnerability affecting versions prior to 8.4.1. An authenticated user possessing the <code>users.edit</code> permission can exploit this flaw to elevate their own privileges to that of an administrator. This is achieved by sending a specifically crafted PATCH request to the <code>/api/v1/users/{id}</code> endpoint, where the <code>permissions[admin]</code> parameter is set to &lsquo;1&rsquo;. The vulnerability, identified as CVE-2026-44832, arises due to insufficient validation on the server-side, allowing unauthorized modification of user permissions. The absence of proper input sanitization in the API controller enables users with limited privileges to assign administrative rights to themselves, undermining the system&rsquo;s security model.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker authenticates to the Snipe-IT application with a user account that has the <code>users.edit</code> permission.</li>
<li>The attacker identifies the target user ID, typically their own user ID, which can be obtained from the user profile page or API.</li>
<li>The attacker crafts a PATCH request to <code>/api/v1/users/{id}</code>, replacing <code>{id}</code> with the target user&rsquo;s ID.</li>
<li>Within the PATCH request body, the attacker includes the parameter <code>permissions[admin]=1</code>.</li>
<li>The attacker sends the malicious PATCH request to the Snipe-IT server.</li>
<li>The Snipe-IT server, due to insufficient validation, accepts the request and updates the target user&rsquo;s permissions, granting them administrative privileges.</li>
<li>The attacker logs out and logs back in to the Snipe-IT application.</li>
<li>Upon logging back in, the attacker now possesses administrative privileges, allowing them to perform any action within the Snipe-IT system.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of this vulnerability allows an attacker with limited user privileges to gain full administrative control over the Snipe-IT system. This could lead to unauthorized access to sensitive data, modification or deletion of assets, creation of rogue administrator accounts, and complete compromise of the Snipe-IT installation. The vulnerability affects all Snipe-IT instances running versions prior to 8.4.1. The scope of the impact is limited to the Snipe-IT application itself.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade Snipe-IT to version 8.4.1 or later to remediate CVE-2026-44832 as per the vendor&rsquo;s advisory.</li>
<li>Deploy the Sigma rule <code>Detect Snipe-IT Privilege Escalation Attempt via API</code> to monitor for suspicious PATCH requests to the <code>/api/v1/users/{id}</code> endpoint.</li>
<li>Enable web server access logging and review logs for unusual API requests targeting user permission modification.</li>
<li>Implement input validation and sanitization on all API endpoints, particularly those that handle user permissions.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>privilege-escalation</category><category>web-application</category><category>api</category></item></channel></rss>