<?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>SysPass - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/syspass/</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, 24 Jul 2026 17:18:52 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/syspass/feed.xml" rel="self" type="application/rss+xml"/><item><title>CVE-2026-65709 - sysPass JSON-RPC API Missing Object-Level Authorization</title><link>https://feed.craftedsignal.io/briefs/2026-07-cve-2026-65709-syspass/</link><pubDate>Fri, 24 Jul 2026 17:18:52 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-07-cve-2026-65709-syspass/</guid><description>sysPass versions up to 3.2.11 are affected by a missing object-level authorization vulnerability in the JSON-RPC API. Attackers holding an API token can exploit this flaw by invoking AccountController methods (e.g., viewAction, editAction, deleteAction, editPassAction) without proper AccountFilterUser checks, allowing them to enumerate account metadata, overwrite passwords, and delete user accounts across the entire vault, bypassing per-account access control defined by their token permissions.</description><content:encoded><![CDATA[<p>sysPass, an open-source password manager, through version 3.2.11 is vulnerable to a critical missing object-level authorization flaw (CVE-2026-65709) in its JSON-RPC API. This vulnerability allows an attacker who has acquired any API token, even one with limited permissions, to bypass intended access controls. By directly invoking <code>AccountController</code> methods such as <code>viewAction</code>, <code>editAction</code>, <code>deleteAction</code>, and <code>editPassAction</code>, the attacker can perform unauthorized actions across the entire sysPass vault. This includes enumerating metadata for all accounts, overwriting any user's password, and deleting any account, completely disregarding the <code>AccountFilterUser</code> checks that should enforce per-account permissions. This vulnerability significantly impacts the confidentiality, integrity, and availability of sensitive credentials managed by sysPass instances.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li><strong>Initial Access - API Token Acquisition</strong>: An attacker obtains a legitimate, but potentially low-privileged, API token for a sysPass instance through various means (e.g., compromise of a less critical user account, sniffing network traffic, misconfiguration).</li>
<li><strong>JSON-RPC API Interaction</strong>: The attacker sends specially crafted JSON-RPC requests to the sysPass API endpoint, targeting the <code>AccountController</code>.</li>
<li><strong>Targeting Unauthorized Methods</strong>: The requests specifically invoke <code>AccountController</code> methods like <code>viewAction</code>, <code>editAction</code>, <code>deleteAction</code>, or <code>editPassAction</code>.</li>
<li><strong>Authorization Bypass</strong>: Due to CVE-2026-65709, the sysPass application fails to enforce <code>AccountFilterUser</code> checks, allowing the API token to operate outside its assigned scope.</li>
<li><strong>Account Enumeration</strong>: By successfully invoking <code>viewAction</code> without proper authorization, the attacker can enumerate metadata for any account in the sysPass vault, performing unauthorized reconnaissance.</li>
<li><strong>Password Overwrite</strong>: Leveraging the <code>editPassAction</code> method, the attacker can overwrite passwords for any user account within the vault, gaining unauthorized access to those accounts.</li>
<li><strong>Account Modification/Deletion</strong>: The attacker can use <code>editAction</code> to modify account details or <code>deleteAction</code> to remove accounts entirely, leading to data manipulation or denial of service.</li>
<li><strong>Full Vault Compromise</strong>: Through these actions, the attacker achieves a full compromise of user accounts and sensitive information stored within the sysPass vault, bypassing all intended access controls.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-65709 leads to a complete compromise of the sysPass vault. Attackers can enumerate all account metadata, gain unauthorized access to any user account by overwriting passwords, and disrupt operations by deleting accounts. This results in severe data breaches, loss of critical credentials, and potential denial of service, affecting all users and systems whose credentials are managed by the vulnerable sysPass instance. The vulnerability bypasses fine-grained access controls, rendering existing token permissions ineffective against a determined attacker.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Patch CVE-2026-65709 immediately by upgrading sysPass to version 3.2.12 or newer to address the missing object-level authorization vulnerability.</li>
<li>Review web server access logs for any suspicious JSON-RPC API calls to <code>AccountController</code> methods (<code>viewAction</code>, <code>editAction</code>, <code>deleteAction</code>, <code>editPassAction</code>) that appear to originate from API tokens with insufficient permissions.</li>
<li>Implement strict network segmentation and firewall rules to limit direct access to the sysPass JSON-RPC API endpoint only to trusted internal sources.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>sysPass</category><category>vulnerability</category><category>authorization-bypass</category><category>api-exploitation</category><category>cve</category><category>missing-authorization</category><category>credential-disclosure</category><category>web-application</category></item><item><title>sysPass Insecure Direct Object Reference Vulnerability (CVE-2026-65708)</title><link>https://feed.craftedsignal.io/briefs/2026-07-syspass-idor/</link><pubDate>Fri, 24 Jul 2026 17:18:13 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-07-syspass-idor/</guid><description>An insecure direct object reference vulnerability (CVE-2026-65708) in sysPass versions up to 3.2.11 allows authenticated attackers to bypass access controls, accessing, enumerating, and manipulating account file attachments by manipulating numeric file IDs in `AccountFileController` actions without proper authorization checks, leading to unauthorized data access.</description><content:encoded><![CDATA[<p>A critical insecure direct object reference (IDOR) vulnerability, identified as CVE-2026-65708, has been discovered in sysPass versions up to and including 3.2.11. This flaw enables any authenticated attacker to bypass account-level access controls within the application. By exploiting missing authorization checks in the <code>AccountFileController</code>, attackers can manipulate specific numeric file IDs when performing actions such as downloading, viewing, deleting, uploading, or listing attachments. This allows them to access, enumerate, and manipulate any file attachment stored in the sysPass vault, regardless of their assigned permissions for the associated accounts. This vulnerability significantly compromises data confidentiality and integrity by allowing unauthorized access to sensitive information.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An authenticated attacker logs into the sysPass application with valid user credentials.</li>
<li>The attacker crafts an HTTP request targeting the <code>AccountFileController</code> component, attempting an action like <code>download</code>, <code>view</code>, <code>delete</code>, <code>upload</code>, or <code>list</code> an account file attachment.</li>
<li>Instead of providing a legitimate file ID associated with their authorized accounts, the attacker supplies an arbitrary numeric file ID in the request parameters.</li>
<li>Due to missing authorization checks in the <code>AccountFileController</code>, the application processes the request for the supplied arbitrary file ID without verifying the attacker's access permissions for the associated account.</li>
<li>The sysPass application serves the requested attachment, allows its deletion, or permits other specified manipulation, effectively bypassing the intended account-level access controls.</li>
<li>The attacker successfully accesses, enumerates, or manipulates account file attachments belonging to accounts they do not have legitimate permissions for.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-65708 results in unauthorized access to sensitive data stored in sysPass file attachments. Attackers can view, download, modify, or delete any file attachment within the system, leading to severe data breaches, loss of sensitive information, or data corruption. This impacts the confidentiality and integrity of all data stored in sysPass attachments across an organization, potentially exposing credentials, financial documents, or other critical business assets. The vulnerability's CVSS v3.1 base score of 8.1 highlights its significant risk.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Patch CVE-2026-65708 immediately by upgrading sysPass to a version greater than 3.2.11.</li>
<li>Implement strict authorization checks for all file-related operations within the <code>AccountFileController</code> to ensure that only authorized users can access specific file IDs.</li>
<li>Monitor web server access logs for repeated or unusual requests to sysPass <code>AccountFileController</code> endpoints (e.g., <code>download</code>, <code>view</code>, <code>delete</code>, <code>upload</code>, <code>list</code> actions) that involve varying or non-sequential file IDs, especially from single authenticated users.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>idor</category><category>access-control-bypass</category><category>web-application</category><category>data-exfiltration</category></item></channel></rss>