Skip to main content

PHP EUVD-2025-17113

| CVE-2025-5759 MEDIUM
Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection') (CWE-74)
2025-06-06 cna@vuldb.com
5.5
CVSS 4.0 · NVD
Share

Severity by source

NVD PRIMARY
5.5 MEDIUM
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X

Primary rating from NVD · only source for this CVE.

CVSS VectorNVD

CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
X

Lifecycle Timeline

6
Severity Changed
Apr 29, 2026 - 01:11 NVD
HIGH MEDIUM
CVSS changed
Apr 29, 2026 - 01:11 NVD
7.3 (HIGH) 5.5 (MEDIUM)
EUVD ID Assigned
Mar 14, 2026 - 18:10 euvd
EUVD-2025-17113
Analysis Generated
Mar 14, 2026 - 18:10 vuln.today
PoC Detected
Jun 10, 2025 - 14:57 vuln.today
Public exploit code
CVE Published
Jun 06, 2025 - 11:15 nvd
HIGH 7.3

DescriptionCVE.org

A vulnerability classified as critical was found in PHPGurukul Local Services Search Engine Management System 2.1. This vulnerability affects unknown code of the file /admin/edit-person-detail.php?editid=2. The manipulation of the argument editid leads to sql injection. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used.

AnalysisAI

Critical SQL injection vulnerability in PHPGurukul Local Services Search Engine Management System version 2.1, specifically in the /admin/edit-person-detail.php file where the 'editid' parameter is not properly sanitized. An unauthenticated remote attacker can exploit this vulnerability to execute arbitrary SQL queries, potentially leading to unauthorized data access, modification, or deletion. The vulnerability has public exploit code available and may be actively exploited in the wild.

Technical ContextAI

The vulnerability exists in the PHPGurukul Local Services Search Engine Management System (PHP-based web application) where user-supplied input from the 'editid' GET parameter is directly concatenated into SQL queries without proper input validation or parameterized query mechanisms. This violates CWE-74 (Improper Neutralization of Special Elements in Output Used by a Downstream Component) and more specifically represents a classic SQL injection flaw (CWE-89). The affected file /admin/edit-person-detail.php processes the editid parameter to retrieve person details but fails to use prepared statements or proper escaping, allowing attackers to inject malicious SQL syntax. The administrative endpoint suggests this may require some level of access, but the CVSS vector indicates PR:N (no privileges required), suggesting the admin panel may be directly accessible or the vulnerability exists in an unauthenticated pathway.

RemediationAI

Apply vendor-released security patch when available Workaround - Input Validation: Add validation: if (!ctype_digit($_GET['editid'])) { reject_request(); } Workaround - Parameterized Queries: Replace: $query = "SELECT * FROM person WHERE id=" . $_GET['editid']; with prepared statement: $stmt = $pdo->prepare('SELECT * FROM person WHERE id = ?'); $stmt->execute([$_GET['editid']]) Access Control: Implement network-level or application-level access controls WAF Rule: Monitor for SQL keywords (UNION, SELECT, DROP, etc.) in GET parameter values

Share

EUVD-2025-17113 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy