Severity by source
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
Lifecycle Timeline
6DescriptionCVE.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
More from same product – last 7 days
Authentication bypass in Discuz! X5.0 releases 20260320 through 20260501 allows unauthenticated remote attackers to acce
Authenticated remote code execution in Discuz! X5.0 releases 20260320 through 20260501 allows administrators to chain a
Unauthenticated PHP Object Injection in the Happyforms WordPress plugin (versions <= 1.26.13) allows remote attackers to
Unauthenticated PHP Object Injection in the Broadcast Live Video WordPress plugin (versions prior to 7.1.3) allows remot
Unauthenticated PHP object injection in the WordPress plugin 'Integration for Keap/Infusionsoft and Contact Form 7, WPFo
Share
External POC / Exploit Code
Leaving vuln.today
EUVD-2025-17113