CVE-2026-34099
Deferred Deferred - Pending Action

SQL Injection in Guardian Language-System

Vulnerability report for CVE-2026-34099, 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 job_info.php (line 16): SELECT * FROM jobs where id = '\".$_GET['id'].\"'. No authentication is required. An unauthenticated attacker can perform error-based SQL injection to extract the database version, current user, schema names, and table 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 commit_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 is an unauthenticated SQL injection in the Guardian language-system, specifically in the job_info.php file. The 'id' GET parameter is passed directly into an unsanitized SQL query without any validation or authentication. This allows an attacker to inject malicious SQL code.

By exploiting this flaw, an attacker can perform error-based SQL injection to extract sensitive information from the database, such as the database version, current user, schema names, and table contents.

Detection Guidance

This vulnerability can be detected by testing the 'id' GET parameter in the job_info.php file for SQL injection vulnerabilities. Since the parameter is directly passed into an unsanitized SQL query, sending specially crafted input that causes SQL errors or unexpected responses can reveal the issue.

Common detection methods include using SQL injection testing tools or manual commands such as appending SQL syntax to the 'id' parameter in the URL to observe error messages or database responses.

  • Example command to test via curl: curl "http://target/job_info.php?id=1'"
  • Example command to test via curl with error-based payload: curl "http://target/job_info.php?id=1' OR '1'='1"
  • Look for database error messages or unusual output indicating SQL injection vulnerability.
Impact Analysis

This vulnerability can have severe impacts because it allows an unauthenticated attacker to access sensitive database information without any restrictions.

  • Disclosure of database version and current user, which can aid further attacks.
  • Extraction of schema names and table contents, potentially exposing confidential data.
  • Complete compromise of confidentiality, integrity, and availability of the affected system, as indicated by the high CVSS scores.
Compliance Impact

The vulnerability allows unauthenticated attackers to perform SQL injection and extract sensitive database information, including schema names and table 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 enables unauthorized data extraction without authentication, it undermines confidentiality, integrity, and availability controls mandated by these standards, potentially resulting in non-compliance and legal consequences.

Mitigation Strategies

Immediate mitigation steps include sanitizing and validating the 'id' GET parameter in job_info.php to prevent direct insertion into SQL queries.

Implement prepared statements or parameterized queries to safely handle user input and avoid SQL injection.

Restrict access to the vulnerable script if possible until a patch or fix is applied.

Monitor logs for suspicious requests targeting the 'id' parameter to detect exploitation attempts.

Chat Assistant

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

EPSS Chart