CVE-2026-2116
SQL Injection in itsourcecode Society Management System Admin Module
Publication date: 2026-02-08
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| angeljudesuarez | society_management_system | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| 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. |
| 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': 'CVE-2026-2116 is a critical SQL injection vulnerability found in itsourcecode Society Management System version 1.0, specifically in the file /admin/edit_expenses.php.'}, {'type': 'paragraph', 'content': "The vulnerability arises from improper handling of the 'expenses_id' parameter, which allows an attacker to manipulate this argument to inject malicious SQL code."}, {'type': 'paragraph', 'content': 'This flaw occurs because the input is not properly validated or sanitized before being incorporated into SQL queries.'}, {'type': 'paragraph', 'content': 'The vulnerability can be exploited remotely without any authentication, making it highly accessible.'}, {'type': 'paragraph', 'content': 'Attackers can use various SQL injection techniques such as boolean-based blind, error-based, time-based blind, and UNION query injections to exploit this vulnerability.'}] [1, 2, 3]
How can this vulnerability impact me? :
Exploiting this vulnerability allows attackers to gain unauthorized access to the database.
Attackers can retrieve sensitive information, modify or delete data, and potentially disrupt system availability.
The vulnerability impacts the confidentiality, integrity, and availability of the system.
Because the exploit requires no authentication and can be launched remotely, it poses a significant security risk.
Successful exploitation could lead to full system compromise or service disruption.
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 in the /admin/edit_expenses.php file can be detected by testing the 'expenses_id' parameter for SQL injection flaws using various techniques such as boolean-based blind, error-based, time-based blind, and UNION query injections."}, {'type': 'paragraph', 'content': 'Example payloads to test the vulnerability include:'}, {'type': 'list_item', 'content': "Boolean-based blind: expenses_id=4' RLIKE (SELECT (CASE WHEN (7644=7644) THEN 4 ELSE 0x28 END))--"}, {'type': 'list_item', 'content': "Error-based: expenses_id=4' OR (SELECT 8378 FROM(SELECT COUNT(*),CONCAT(0x71766a7171,(SELECT (ELT(8378=8378,1))),0x7176787171,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)--"}, {'type': 'list_item', 'content': "Time-based blind: expenses_id=4' AND (SELECT 8933 FROM (SELECT(SLEEP(5)))pUvf)--"}, {'type': 'list_item', 'content': "UNION query: expenses_id=-5311' UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,CONCAT(0x71766a7171,0x4d586d7a45494746536c6355796743556454676b6f4b504f684e6245426251666b634f7962744b47,0x7176787171) #"}, {'type': 'paragraph', 'content': 'Tools like sqlmap can be used to automate detection and exploitation attempts against this parameter to confirm the vulnerability.'}, {'type': 'paragraph', 'content': 'Additionally, attackers may use Google dorking with queries such as inurl:admin/edit_expenses.php to locate vulnerable targets.'}] [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing or updating the affected component or product to a version that is not vulnerable.
Recommended remediation measures are:
- Implement prepared statements with parameter binding to separate SQL code from user input.
- Enforce strict input validation and filtering to ensure inputs conform to expected formats.
- Minimize database user privileges by avoiding high-privilege accounts for routine operations.
- Conduct regular security audits to detect and address vulnerabilities promptly.