CVE-2025-70899
BaseFortify
Publication date: 2026-01-22
Last updated on: 2026-02-02
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| phpgurukul | online_course_registration | 3.1 |
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
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking if the administrative forms in the PHPgurukul Online Course Registration v3.1 application lack CSRF tokens or any CSRF protection mechanism. One approach is to inspect the HTML forms used for administrative actions to see if they include CSRF tokens. Additionally, you can use tools like Burp Suite or OWASP ZAP to intercept and analyze requests to verify the absence of CSRF tokens. There are no specific commands provided in the resources, but manual inspection or web security scanners focusing on CSRF detection can be used. [1]
Can you explain this vulnerability to me?
This vulnerability is a lack of Cross-Site Request Forgery (CSRF) protection on all administrative forms in PHPgurukul Online Course Registration v3.1. This means an attacker can trick authenticated administrators into visiting a malicious webpage that performs unauthorized actions on their behalf without their consent. [1]
How can this vulnerability impact me? :
The vulnerability can allow attackers to perform unauthorized administrative actions by exploiting authenticated administrators. This can lead to unauthorized changes or control over the online course registration system, potentially compromising its integrity and functionality. [1]
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, you should implement proper Cross-Site Request Forgery (CSRF) protection on all administrative forms in the PHPgurukul Online Course Registration v3.1 application. This typically involves adding CSRF tokens to forms and validating them on the server side to ensure that requests are legitimate and originate from authenticated administrators. [1]