CVE-2026-34108
Deferred Deferred - Pending Action

Command Injection in Guardian Language-System

Vulnerability report for CVE-2026-34108, 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 a PHP exec() call in text.php (line 15) without sanitization: exec(\"php jobs/text.php \".$login_session.\" \".$_GET['id'].\" ...\"). No authentication is required. An unauthenticated remote attacker can append shell metacharacters to execute arbitrary OS commands on the server.

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-78 The product constructs all or part of an OS command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended OS command when it is sent to a downstream component.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in the Guardian language-system's text.php file, where the 'id' GET parameter is passed directly into a PHP exec() function call without any sanitization or validation.

Because of this, an unauthenticated remote attacker can inject shell metacharacters into the 'id' parameter, allowing them to execute arbitrary operating system commands on the server.

No authentication is required to exploit this flaw, making it particularly dangerous.

Detection Guidance

This vulnerability can be detected by testing the 'id' GET parameter in the text.php file for command injection. Since the parameter is passed directly into a PHP exec() call without sanitization, sending payloads with shell metacharacters can reveal if arbitrary commands are executed.

A common detection method is to send HTTP requests to the vulnerable endpoint with crafted 'id' parameters that include command injection payloads, such as appending shell commands or special characters, and observe the server's response or behavior.

  • Use curl or similar tools to send requests like: curl "http://target/text.php?id=1;id" - to check if the output of the 'id' command is returned.
  • Try payloads such as: curl "http://target/text.php?id=1;uname -a" to see if system information is disclosed.
  • Monitor network traffic for unusual or unexpected command execution patterns or responses that indicate command injection.
Impact Analysis

Exploitation of this vulnerability allows an attacker to execute arbitrary OS commands on the server hosting the Guardian language-system.

This can lead to full system compromise, unauthorized data access, data modification or deletion, disruption of services, and potentially using the server as a pivot point to attack other systems.

Because no authentication is required, attackers can exploit this remotely without any prior access.

Compliance Impact

The vulnerability allows unauthenticated remote attackers to execute arbitrary OS commands on the server, which can lead to unauthorized access, data breaches, and potential manipulation or exposure of sensitive information.

Such unauthorized access and potential data compromise can negatively impact compliance with common standards and regulations like GDPR and HIPAA, which require protection of personal and sensitive data against unauthorized access and breaches.

Therefore, exploitation of this vulnerability could result in violations of these regulations due to failure to adequately secure systems and protect data confidentiality and integrity.

Mitigation Strategies

Immediate mitigation steps include restricting access to the vulnerable endpoint, applying input validation and sanitization on the 'id' parameter to prevent shell metacharacters from being executed, and updating or patching the Guardian language-system to a version where this vulnerability is fixed.

Since no authentication is required to exploit this vulnerability, it is critical to implement network-level protections such as firewall rules to block unauthorized access to the affected PHP scripts.

If patching is not immediately possible, consider disabling or restricting the functionality of the text.php script or isolating the affected system to prevent exploitation.

Chat Assistant

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

EPSS Chart