CVE-2026-34102
Deferred Deferred - Pending Action

SQL Injection in Guardian Language-System

Vulnerability report for CVE-2026-34102, 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_get.php (line 16): SELECT * FROM jobs where input1 = '\".$_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 2 associated CPEs
Vendor Product Version / Range
guardian language-system to e42c395 (inc)
guardian language-system to e42c395 (exc)

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-34102 is a critical SQL injection vulnerability in the Guardian Language-System. It occurs because the 'id' GET parameter in the job_info_get.php file is directly inserted into an SQL query without proper sanitization or validation.

This flaw allows an attacker, even without authentication, to perform error-based SQL injection attacks. By exploiting this, the attacker can extract sensitive data from the database.

Detection Guidance

This vulnerability can be detected by testing the 'id' GET parameter in the job_info_get.php endpoint for SQL injection flaws. Since the vulnerability is an error-based SQL injection, sending specially crafted input to the 'id' parameter and observing error messages or unusual database responses can indicate its presence.

Common detection methods include using automated SQL injection testing tools or manual testing with commands such as curl or sqlmap targeting the vulnerable URL.

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

This vulnerability can lead to unauthorized access to sensitive database information. An attacker can extract confidential data, potentially leading to data breaches.

Because the attack requires no authentication, it increases the risk of exploitation by any remote attacker.

The impact includes loss of data confidentiality, integrity, and availability, which can severely affect the affected system and its users.

Compliance Impact

The vulnerability allows an attacker to perform unauthenticated SQL injection to extract database contents, which can lead to unauthorized access to sensitive data.

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

Mitigation Strategies

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

If possible, apply patches or updates from the vendor that address this vulnerability.

As a temporary measure, restrict access to the vulnerable endpoint to trusted users or networks to reduce exposure.

Implement web application firewall (WAF) rules to detect and block SQL injection attempts targeting the 'id' parameter.

Chat Assistant

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

EPSS Chart