CVE-2026-26700
SQL Injection in Personnel Property Equipment System Admin Module
Publication date: 2026-03-02
Last updated on: 2026-03-03
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| jon-remus-sevellejo | personnel_property_equipment_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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
[{'type': 'paragraph', 'content': "The Personnel Property Equipment System v1.0 by sourcecodester has an SQL injection vulnerability in the file /ppes/admin/edit_employee.php. Specifically, the 'id' parameter in the URL query string is vulnerable to SQL injection attacks."}, {'type': 'paragraph', 'content': 'An attacker can inject malicious SQL code through this parameter, such as using a UNION SELECT statement to retrieve database information. This allows execution of arbitrary SQL commands on the backend database.'}] [1]
How can this vulnerability impact me? :
This vulnerability can allow an attacker to execute arbitrary SQL queries on the backend database, which may lead to unauthorized data access or data leakage.
It also enables unauthorized data manipulation and could potentially lead to further compromise of the system.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This SQL injection vulnerability can be detected by testing the `id` parameter in the URL `/ppes/admin/edit_employee.php?id=` for SQL injection payloads.'}, {'type': 'paragraph', 'content': 'A common detection method is to send a crafted HTTP request with a payload that attempts to inject SQL commands, such as a UNION SELECT statement, and observe the response for database information or errors.'}, {'type': 'list_item', 'content': "Example payload to test: `/ppes/admin/edit_employee.php?id=-1' union select 1,2,database(),4,5,6,7,8--+`"}, {'type': 'list_item', 'content': 'You can use tools like curl to send this request, for example:'}, {'type': 'list_item', 'content': 'curl -i -b "PHPSESSID=1lo81k0mv3p5cfonn5hopvoht6" "http://target/ppes/admin/edit_employee.php?id=-1\'%20union%20select%201,2,database(),4,5,6,7,8--+"'}, {'type': 'paragraph', 'content': 'If the response contains database information or unusual data, it indicates the presence of the SQL injection vulnerability.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
I don't know