CVE-2026-34107
Received Received - Intake

Command Injection in Guardian Language-System

Vulnerability report for CVE-2026-34107, 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-01

Assigner: VulnCheck

Description

Guardian language-system passes the id GET parameter directly into a PHP exec() call in translate.php (line 14) without sanitization: exec(\"php jobs/translate.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-01
Generated
2026-07-01
AI Q&A
2026-07-01
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Currently, no data is known.

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

CVE-2026-34107 is an unauthenticated OS command injection vulnerability in the Guardian Language-System. It occurs because the 'id' GET parameter in the translate.php file is passed directly into a PHP exec() call without any sanitization or validation.

This means an attacker can append shell metacharacters to the 'id' parameter and execute arbitrary operating system commands on the server remotely, without needing to authenticate.

Impact Analysis

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

  • Complete compromise of the server hosting the Guardian Language-System.
  • Potential data theft, data loss, or unauthorized data modification.
  • Disruption of service or denial of service by executing malicious commands.
  • Use of the compromised server as a pivot point for further attacks within the network.
Detection Guidance

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

  • Use curl or wget to send requests with shell metacharacters appended to the 'id' parameter, for example: curl "http://target/translate.php?id=1;id"
  • Check server responses or side effects for command execution results, such as output of 'id' or other harmless commands.
  • Monitor network traffic or logs for unusual command execution or unexpected system calls triggered by requests to translate.php.
Mitigation Strategies

Immediate mitigation steps include restricting access to the vulnerable translate.php endpoint, applying input validation or sanitization to the 'id' parameter to prevent shell metacharacters, and implementing authentication to prevent unauthenticated access.

If possible, update or patch the Guardian Language-System to a version where this vulnerability is fixed.

As a temporary measure, consider disabling the translate.php functionality or isolating the affected server to limit potential exploitation.

Chat Assistant

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

EPSS Chart