CVE-2025-5633
BaseFortify
Publication date: 2025-06-05
Last updated on: 2025-06-10
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| anirbandutta9 | news-buzz | 1.0 |
| code-projects | content_management_system | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
| CWE-74 | The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-5633 is a critical SQL injection vulnerability in the News-Buzz 1.0 Content Management System, specifically in the /admin/users.php file. The vulnerability arises from improper sanitization of the 'delete' parameter, allowing an attacker to inject malicious SQL commands remotely without authentication. This can lead to unauthorized access or manipulation of the database. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by compromising the confidentiality, integrity, and availability of your system's data. An attacker can remotely exploit the SQL injection flaw to execute unauthorized SQL commands, potentially leading to data leakage, data modification, or denial of service. Since it requires no authentication and has public proof-of-concept exploits, it poses a significant security risk. [2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking for the presence of the vulnerable file `/admin/users.php` in the News-Buzz 1.0 CMS and testing the `delete` parameter for SQL injection. One method is to use Google Dorking with the query `inurl:admin/users.php` to identify potentially vulnerable targets. For direct testing, you can use tools like curl or sqlmap to send crafted requests manipulating the `delete` parameter to observe if SQL injection is possible. Example command with sqlmap: `sqlmap -u "http://target/admin/users.php?delete=1" --batch`. [2, 1]
What immediate steps should I take to mitigate this vulnerability?
There are no known countermeasures or mitigations currently available for this vulnerability. The recommended immediate step is to replace the affected News-Buzz 1.0 CMS with an alternative product to avoid exploitation. [2]