CVE-2026-34110
Deferred Deferred - Pending Action

Command Injection in Guardian Language-System

Vulnerability report for CVE-2026-34110, 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 complex_start.php (line 14) without sanitization: exec(\"php jobs/complex.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 (exc)

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 complex_start.php file, where the 'id' GET parameter is passed directly into a PHP exec() function call without any sanitization or input validation.

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

Detection Guidance

This vulnerability can be detected by monitoring for unusual or unauthorized execution of OS commands originating from the complex_start.php script, especially those involving the 'id' GET parameter.

One approach is to check web server logs for requests to complex_start.php that include suspicious shell metacharacters in the 'id' parameter, such as ;, &, |, $, or backticks.

Additionally, you can use commands to search for such patterns in logs. For example:

  • grep -E "id=.*[;&|$`"]" /var/log/apache2/access.log
  • grep complex_start.php /var/log/apache2/access.log | grep -E "id=.*[;&|$`"]"

You may also use intrusion detection systems (IDS) or web application firewalls (WAF) to detect and alert on such injection attempts.

Impact Analysis

This vulnerability can have severe impacts because it allows an attacker to execute arbitrary OS commands on the affected server without any authentication.

Such unauthorized command execution can lead to full system compromise, data theft, data loss, service disruption, or the attacker gaining persistent access to the system.

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 compromise 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.

However, the provided information does not explicitly detail the impact on compliance or specific regulatory requirements.

Mitigation Strategies

Immediate mitigation steps include restricting access to the vulnerable complex_start.php script and disabling the affected functionality if possible.

Implement input validation and sanitization on the 'id' GET parameter to prevent shell metacharacters from being passed to the exec() call.

If a patch or updated version of the Guardian language-system is available, apply it promptly to fix the vulnerability.

In the meantime, consider using web application firewalls (WAF) to block requests containing suspicious characters in the 'id' parameter.

Monitor logs for exploitation attempts and restrict network access to the affected server where feasible.

Chat Assistant

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

EPSS Chart