Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2696+ Articles
165+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. SQL Injection in SourceCodester Online Voting System Risks Election Data
SQL Injection in SourceCodester Online Voting System Risks Election Data
SECURITYHIGHCVE-2026-86159

SQL Injection in SourceCodester Online Voting System Risks Election Data

An unauthenticated SQL injection in SourceCodester's Online Voting System lets attackers manipulate voter, admin, and configuration records.

Dylan H.

Security Team

September 6, 2026
4 min read

Affected Products

  • SourceCodester Online Voting System 1.0

Executive Summary

A SQL injection vulnerability (CVE-2026-86159) has been disclosed in SourceCodester's Online Voting System 1.0. The flaw affects an unnamed function reachable at /ajax.php?action=save_user, where the ID parameter is passed into a database query without sanitization. Exploitation requires no authentication and is described as easy to carry out; a public proof-of-concept exploit is already available.

CVSS Score: 7.3 (High, CVSS 3.1) / 6.9 (Medium, CVSS 4.0)

An attacker who successfully exploits this flaw can read, alter, or destroy application data — including voter records, administrator accounts, and voting configuration — putting both data confidentiality and the integrity of any hosted vote at risk.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-86159
CVSS 3.1 Score7.3 (High)
CVSS 4.0 Score6.9 (Medium)
CWECWE-89 (SQL Injection)
Endpoint/ajax.php?action=save_user
Vulnerable ParameterID
Attack VectorNetwork (no authentication required)
Exploit StatusPublic proof-of-concept available on GitHub
Patch StatusNo vendor fix available at time of writing

Affected Versions

ProductAffected VersionsFixed Version
SourceCodester Online Voting System1.0None available

This CVE is part of a cluster of related SQL injection flaws disclosed in the same product around the same date, including issues in delete_voting, delete_category, and login actions of the same ajax.php endpoint. Deployments of this codebase should treat the entire ajax.php action dispatcher as untrusted until a comprehensive fix lands.


Attack Vector

1. Attacker identifies a deployment of SourceCodester Online Voting System 1.0
2. Attacker sends a request to ajax.php?action=save_user with a crafted ID parameter
   containing SQL injection payloads (e.g. UNION-based or boolean-based injection)
3. The application concatenates the unsanitized ID value directly into a SQL query
4. The database executes the attacker-controlled query
5. Attacker extracts, modifies, or deletes data — voter records, admin
   credentials, ballots, or configuration — depending on query used

Impact of Successful Exploitation

ImpactDescription
Data ExfiltrationRead voter, administrator, and configuration records
Data TamperingAlter vote counts, candidate data, or user roles
Data DestructionDelete records via injected DML statements
Authentication BypassRelated login action injection could allow credential-less admin access
Loss of Election IntegrityAny hosted vote using this software has its trustworthiness undermined

Immediate Remediation

Since this is unmaintained/demonstration software with no official patch, mitigation is compensating-control based:

  1. Take affected deployments offline if used for any live or planned voting process
  2. Place a WAF in front of the application with SQL injection rule sets enabled, if it must stay online for any reason
  3. Restrict access to ajax.php at the web server level to only the parameters/actions actually required
  4. Migrate to parameterized queries / prepared statements for all ID-driven actions if you maintain a fork of this codebase
  5. Audit existing data for signs of prior tampering if the application has been internet-facing

Detecting Exploitation Attempts

# Watch access logs for SQL injection patterns targeting the save_user action
grep -i "ajax.php?action=save_user" /var/log/nginx/access.log | grep -iE "union|select|--|;--|or 1=1"

Detection Indicators

IndicatorDescription
SQL keywords in ID parameter valuesDirect exploitation attempt
Unexpected changes to voter/candidate/admin tablesSuccessful data tampering
Anomalous response timing on save_user requestsPossible blind/time-based injection
New or modified administrator accountsPost-exploitation persistence

Post-Remediation Steps

  1. Do not use this codebase for any real election or vote given the pattern of unpatched injection flaws across multiple actions
  2. If a fork must remain in production, rewrite all database access to use prepared statements
  3. Restore from a known-good backup if tampering is suspected
  4. Rotate all administrator credentials
  5. Add input validation and a WAF layer as defense in depth even after code-level fixes

References

  • VulDB — CVE-2026-86159 SourceCodester Online Voting System ajax.php save_user SQL Injection
  • RedPacket Security — CVE Alert: CVE-2026-86159
  • OffSeq Threat Radar — CVE-2026-86159 SQL Injection in SourceCodester Online Voting System
  • NIST NVD — CVE-2026-86159

Related Reading

  • WCFM Marketplace SQL Injection
  • Critical Auth Bypass in Tutor LMS Pro Exposes 30,000+
#SQL Injection#CVE-2026-86159#Web Security#Election Security

Related Articles

CVE-2026-13487: SQL Injection in SourceCodester Timetabling System (/archive.php)

A high-severity SQL injection vulnerability in SourceCodester Class and Exam Timetabling System 1.0 allows unauthenticated attackers to manipulate the...

4 min read

SQL Injection in Multi-Vendor Online Grocery Management System (CVE-2026-14695)

A high-severity SQL injection vulnerability in SourceCodester's Multi-Vendor Online Grocery Management System 1.0 allows remote attackers to manipulate...

3 min read

CVE-2026-16227: SQL Injection in SourceCodester Class and Exam Timetabling System

A remotely exploitable SQL injection vulnerability in SourceCodester Class and Exam Timetabling System 1.0 allows unauthenticated attackers to manipulate...

3 min read
Back to all Security Alerts