CVE-2026-14798
Received Received - Intake

SQL Injection in CodeAstro Apartment Visitor Management System

Vulnerability report for CVE-2026-14798, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-06

Last updated on: 2026-07-06

Assigner: VulDB

Description

A vulnerability was identified in CodeAstro Apartment Visitor Management System 1.0. This issue affects some unknown processing of the file /apartment-visitor/visitor-entry.php. The manipulation of the argument visname leads to sql injection. The attack can be initiated remotely. The exploit is publicly available and might be used.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-06
Last Modified
2026-07-06
Generated
2026-07-06
AI Q&A
2026-07-06
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
codeastro apartment_visitor_management_system 1.0

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
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 Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability is a SQL injection issue found in the Apartment Visitor Management System version 1.0, specifically in the file /apartment-visitor/visitor-entry.php.

It occurs because the 'visname' parameter is not properly validated, allowing attackers to inject malicious SQL queries remotely.

This can enable unauthorized access to the database, data leakage, data tampering, and potentially full system compromise.

Impact Analysis

Exploitation of this vulnerability can lead to unauthorized database access, which may result in sensitive data leakage and data tampering.

Attackers could potentially compromise the entire system and disrupt services.

Detection Guidance

This vulnerability can be detected by testing the 'visname' parameter in the /apartment-visitor/visitor-entry.php endpoint for SQL injection. A common method is to use time-based blind SQL injection payloads to observe delays in response times, indicating vulnerability.

  • Use curl or similar tools to send crafted requests with SQL injection payloads to the 'visname' parameter and monitor response times.
  • Example command: curl -X POST 'http://target/apartment-visitor/visitor-entry.php' --data 'visname=normalname' to establish baseline response.
  • Example command with payload: curl -X POST 'http://target/apartment-visitor/visitor-entry.php' --data "visname=normalname' OR IF(SLEEP(5),1,0)-- " and check if response is delayed by 5 seconds.

If the response is delayed significantly compared to the baseline, it indicates the presence of a time-based blind SQL injection vulnerability.

Mitigation Strategies

Immediate mitigation steps include:

  • Implement prepared statements with parameter binding to prevent SQL injection.
  • Apply strict input validation and filtering on the 'visname' parameter to allow only expected input.
  • Minimize database user permissions to limit the impact of a potential exploit.
  • Conduct regular security audits and code reviews to identify and fix similar vulnerabilities.
Compliance Impact

The SQL injection vulnerability in the Apartment Visitor Management System can lead to unauthorized database access, data leakage, and data tampering. Such impacts can result in the exposure or alteration of sensitive personal data.

This exposure and potential compromise of personal data can negatively affect compliance with common standards and regulations such as GDPR and HIPAA, which require the protection of personal and sensitive information against unauthorized access and breaches.

Failure to mitigate this vulnerability could lead to violations of these regulations, resulting in legal and financial consequences for organizations using the affected system.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-14798. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart