Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
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/mirackayikci/cve-2026-52658
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration TestingLearning & Education
GitHubmirackayikci/cve-2026-52658

CVE-2026-52658

CVE-2026-52658 — AureusERP Stored XSS

View Repository
2 months 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-52658 — AureusERP Stored XSS (Chatter Change-Tracking)

CWE-79 · CVSS 8.7 (High) · AureusERP ≤ v1.4.0 / master

Chatter renders the change-tracking old_value / new_value fields as raw HTML ({!! !!}, no sanitization). An authenticated user editing a record stores JavaScript that fires for every viewer of the record, including admins.

.../chatter/.../messages/content-text-entry.blade.php:

root@kitploit:~
{!! str($record->body)->sanitizeHtml() !!}                  // sanitized
{!! $change['old_value'] !!}   {!! $change['new_value'] !!} // NOT sanitized

PoC

Requires any authenticated account with edit rights on a record (e.g. a Project).

  1. Edit the record and set a tracked field such as Name to:
root@kitploit:~
   
  1. Save — the value is written to the Chatter change-tracking log (old → new value).
  2. Open the record and view its Chatter / activity panel.
  3. The log renders the stored value as raw HTML and the payload executes — for anyone who views the record, including admins.
Download Tool