CVE-2026-34100
Deferred Deferred - Pending Action

SQL Injection in Guardian Language-System

Vulnerability report for CVE-2026-34100, 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 media.php (line 17): SELECT id, filename, extension, type, duration, owner, private 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

CVE-2026-34100 is an unauthenticated SQL injection vulnerability in the Guardian Language-System, specifically in the media.php file. The vulnerability occurs because the 'id' GET parameter is directly inserted into an SQL query without any sanitization or validation. This allows an attacker to manipulate the SQL query by injecting malicious input through the 'id' parameter.

By exploiting this flaw, an attacker can perform error-based SQL injection attacks to extract sensitive information from the database, potentially gaining access to data that should be protected.

Detection Guidance

This vulnerability can be detected by testing the 'id' GET parameter in the media.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 testing tools or manual testing with commands such as curl or wget to send requests with SQL payloads to the vulnerable endpoint.

  • Example command to test for SQL injection using curl: curl "http://target/media.php?id=1'"
  • Example command to test for error-based SQL injection: curl "http://target/media.php?id=1' OR '1'='1"

If the response contains SQL error messages or unusual output, it indicates the presence of the vulnerability.

Impact Analysis

This vulnerability can have severe impacts including unauthorized access to sensitive database contents. An attacker exploiting this SQL injection flaw can extract confidential information such as filenames, file types, durations, owners, and privacy settings stored in the database.

Because the vulnerability is unauthenticated and remotely exploitable, it poses a high risk of data breach without requiring any user credentials or interaction.

The critical severity score (CVSS v4.0 BaseScore 9.3) reflects the potential for significant confidentiality, integrity, and availability impacts.

Compliance Impact

The vulnerability allows an attacker to perform error-based SQL injection to extract sensitive database contents. This unauthorized data access can lead to exposure of personal or protected information.

Such exposure can result in non-compliance with data protection regulations like GDPR and HIPAA, which require safeguarding sensitive data against unauthorized access and breaches.

Mitigation Strategies

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

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

Restrict access to the media.php endpoint to authenticated and authorized users only, if possible.

Apply any available patches or updates from the vendor or maintainers that address this vulnerability.

Monitor logs for suspicious activity related to the 'id' parameter and SQL errors.

Chat Assistant

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

EPSS Chart