CVE-2026-34101
Deferred Deferred - Pending Action

SQL Injection in Guardian Language-System via text_file.php

Vulnerability report for CVE-2026-34101, 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 text_file.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-22
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 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

This vulnerability exists in the Guardian language-system where the id GET parameter is directly inserted into an unsanitized SQL query in the file text_file.php at line 17.

Because the input is not sanitized, an authenticated attacker can exploit this by performing error-based SQL injection, which allows them to extract contents from the database.

Detection Guidance

This vulnerability can be detected by testing the 'id' GET parameter in the text_file.php endpoint for SQL injection flaws. Since the vulnerability is an error-based SQL injection, sending specially crafted input that causes SQL errors can help identify the issue.

  • Use curl or a web browser to send requests with SQL injection payloads to the vulnerable parameter, for example: curl "http://target/text_file.php?id=1'"
  • Look for SQL error messages or unusual responses indicating the database is processing injected SQL.
  • Use automated SQL injection detection tools such as sqlmap targeting the 'id' parameter on text_file.php to confirm the vulnerability.
Impact Analysis

This vulnerability can have a severe impact as it allows an attacker to extract sensitive data from the database without proper authorization.

The CVSS v3.1 score of 9.8 indicates a critical severity with high impact on confidentiality, integrity, and availability.

An attacker could gain access to sensitive information, modify data, or disrupt the availability of the system.

Compliance Impact

The vulnerability allows an unauthenticated attacker to perform SQL injection and extract sensitive database contents. This exposure of sensitive data can lead to violations of data protection regulations such as GDPR and HIPAA, which require the protection of personal and sensitive information from unauthorized access.

Because the vulnerability results in a high severity risk of data confidentiality, integrity, and availability compromise, affected organizations may fail to meet compliance requirements that mandate secure handling and protection of sensitive data.

Mitigation Strategies

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

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

Restrict access to the vulnerable endpoint to authenticated and authorized users if possible.

Monitor logs for suspicious requests targeting the 'id' parameter and block malicious IPs.

Apply any available patches or updates from the Guardian Language-System project that address this vulnerability.

Chat Assistant

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

EPSS Chart