CVE-2026-34103
Deferred Deferred - Pending Action

SQL Injection in Guardian Language-System

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

Publication date: 2026-07-01

Last updated on: 2026-07-14

Assigner: VulnCheck

Description

Guardian language-system passes the id GET parameter directly into an unsanitized SQL query in subtitles.php (line 16): SELECT id, filename, extension, type FROM files where id = '\".$_GET['id'].\"'. An authenticated attacker can perform error-based SQL injection to extract database contents.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-01
Last Modified
2026-07-14
Generated
2026-07-21
AI Q&A
2026-07-01
EPSS Evaluated
2026-07-20
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
guardian language-system to e42c395 (inc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
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

The vulnerability in Guardian Language-System occurs because the 'id' GET parameter in the subtitles.php file is directly inserted into an SQL query without proper sanitization or neutralization of special characters.

This allows an attacker, even without authentication, to perform error-based SQL injection attacks, which can be used to extract sensitive data from the database.

The issue is classified as CWE-89, which refers to improper neutralization of special elements used in an SQL command.

Detection Guidance

This vulnerability can be detected by testing the 'id' GET parameter in the subtitles.php file for SQL injection flaws. Since the parameter is directly passed into an unsanitized SQL query, sending specially crafted input that includes SQL syntax can trigger error messages or unexpected behavior indicating the presence of the vulnerability.

Common detection methods include using automated SQL injection scanners or manual testing with tools like curl or sqlmap.

  • Using curl to test for SQL injection errors: curl "http://target/subtitles.php?id=1'"
  • Using sqlmap to automate detection: sqlmap -u "http://target/subtitles.php?id=1" --batch

If the server responds with SQL error messages or unusual responses, it indicates the presence of the vulnerability.

Impact Analysis

This vulnerability can have a critical impact because it allows an unauthenticated attacker to extract database contents through SQL injection.

The attacker can compromise the confidentiality, integrity, and availability of the affected system's data.

Such an attack could lead to unauthorized access to sensitive information, data leakage, and potentially further exploitation of the system.

Compliance Impact

This vulnerability allows an attacker to perform error-based SQL injection to extract database contents, which can lead to unauthorized access to sensitive data.

Such unauthorized data exposure can result in non-compliance with common standards and regulations like GDPR and HIPAA, which require protection of personal and sensitive information.

Failure to protect data confidentiality and integrity as required by these regulations may lead to legal and financial consequences for affected organizations.

Mitigation Strategies

Immediate mitigation steps include sanitizing and validating the 'id' GET parameter before it is used in SQL queries to prevent injection attacks.

Implement prepared statements or parameterized queries instead of directly embedding user input into SQL commands.

If possible, update the Guardian Language-System to a version where this vulnerability is fixed or apply patches provided by the vendor or security community.

Additionally, restrict access to the vulnerable subtitles.php endpoint to authenticated and authorized users only, as the vulnerability requires authentication.

Chat Assistant

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

EPSS Chart