CVE-2025-63710
BaseFortify
Publication date: 2025-11-10
Last updated on: 2025-11-17
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| pijey | simple_public_chat_room | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-352 | The web application does not, or cannot, sufficiently verify whether a request was intentionally provided by the user who sent the request, which could have originated from an unauthorized actor. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a Cross-Site Request Forgery (CSRF) issue in the send_message.php endpoint of SourceCodester Simple Public Chat Room 1.0. The application lacks CSRF protection mechanisms like tokens, nonces, or same-site cookie restrictions. An attacker can craft a malicious HTML page that, when visited by an authenticated user, automatically sends a forged POST request to the vulnerable endpoint. This request executes with the victim's privileges, allowing the attacker to perform unauthorized actions such as sending arbitrary messages in any chat room.
How can this vulnerability impact me? :
The vulnerability allows an attacker to perform actions on behalf of an authenticated user without their consent. Specifically, the attacker can send arbitrary messages in any chat room as if they were the victim. This can lead to unauthorized communication, potential misinformation, or abuse within the chat environment.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this CSRF vulnerability, implement CSRF protection mechanisms such as adding CSRF tokens or nonces to the send_message.php endpoint, and enforce same-site cookie restrictions to prevent unauthorized cross-site requests.