CVE-2025-9472

7.3 HIGH

📋 TL;DR

This SQL injection vulnerability in itsourcecode Apartment Management System 1.0 allows remote attackers to execute arbitrary SQL commands via the ID parameter in /owner_utility/add_owner_utility.php. This affects all deployments of version 1.0 of this software. Attackers could potentially access, modify, or delete database content.

💻 Affected Systems

Products:
  • itsourcecode Apartment Management System
Versions: 1.0
Operating Systems: Any OS running PHP and MySQL/MariaDB
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all installations of version 1.0. Requires PHP and database backend to be vulnerable.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise leading to data theft, data destruction, or full system takeover via SQL injection to RCE chaining.

🟠

Likely Case

Unauthorized access to sensitive apartment management data including tenant information, financial records, and system credentials.

🟢

If Mitigated

Limited impact with proper input validation and database permissions, potentially only error messages or partial data exposure.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Public exploit available on GitHub. Remote exploitation requires no authentication. Simple parameter manipulation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: https://itsourcecode.com/

Restart Required: No

Instructions:

No official patch available. Consider migrating to alternative software or implementing custom fixes.

🔧 Temporary Workarounds

Input Validation Filter

all

Add parameter validation to sanitize ID input before SQL processing

Modify /owner_utility/add_owner_utility.php to validate ID parameter as integer using is_numeric() or filter_var()

WAF Rule Implementation

all

Block SQL injection patterns at web application firewall

Add WAF rule: deny requests to /owner_utility/add_owner_utility.php with SQL keywords in ID parameter

🧯 If You Can't Patch

  • Isolate the system behind a firewall with strict access controls
  • Implement database-level protections: use least privilege accounts, enable query logging

🔍 How to Verify

Check if Vulnerable:

Test /owner_utility/add_owner_utility.php with ID parameter containing SQL injection payload like ' OR '1'='1

Check Version:

Check software version in admin panel or readme files

Verify Fix Applied:

Verify input validation rejects non-numeric ID values and prepared statements are used

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL queries in database logs
  • Multiple failed login attempts from single IP
  • Requests to /owner_utility/add_owner_utility.php with suspicious parameters

Network Indicators:

  • HTTP requests containing SQL keywords (SELECT, UNION, etc.) in URL parameters
  • Unusual database connection patterns

SIEM Query:

source="web_logs" AND url="/owner_utility/add_owner_utility.php" AND (param="*SELECT*" OR param="*UNION*" OR param="*OR*1=1*")

🔗 References

📤 Share & Export