CVE-2026-0701

4.7 MEDIUM

📋 TL;DR

This SQL injection vulnerability in Intern Membership Management System 1.0 allows attackers to manipulate database queries through the Username parameter in the add_admin.php admin interface. Attackers can potentially read, modify, or delete database contents remotely. Organizations using this specific software version are affected.

💻 Affected Systems

Products:
  • Intern Membership Management System
Versions: 1.0
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects installations with the vulnerable add_admin.php file accessible

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise including admin credential theft, data exfiltration, and system takeover via privilege escalation

🟠

Likely Case

Unauthorized data access, potential admin account creation, and database manipulation

🟢

If Mitigated

Limited impact with proper input validation and database permissions restricting damage

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploit requires admin panel access but SQL injection is straightforward once authenticated

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: https://code-projects.org/

Restart Required: No

Instructions:

1. Check vendor website for updates 2. Apply any available patches 3. Test functionality after patching

🔧 Temporary Workarounds

Input Validation Implementation

all

Add parameterized queries and input validation to add_admin.php

Edit add_admin.php to use prepared statements instead of direct SQL concatenation

Access Restriction

linux

Restrict access to admin panel using IP whitelisting or additional authentication

Add .htaccess rules to restrict /intern/admin/ directory

🧯 If You Can't Patch

  • Disable or remove the add_admin.php file if functionality not required
  • Implement web application firewall rules to block SQL injection patterns

🔍 How to Verify

Check if Vulnerable:

Test Username parameter in add_admin.php with SQL injection payloads like ' OR '1'='1

Check Version:

Check software documentation or configuration files for version information

Verify Fix Applied:

Test with same payloads to ensure proper error handling and no SQL execution

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL errors in web server logs
  • Multiple failed login attempts to admin panel
  • Unexpected database queries from web application

Network Indicators:

  • SQL injection patterns in HTTP POST requests to add_admin.php
  • Unusual database connection patterns

SIEM Query:

source="web_logs" AND uri="/intern/admin/add_admin.php" AND (message="sql" OR message="syntax" OR message="database")

🔗 References

📤 Share & Export