CVE-2026-34109
Received Received - Intake

Command Injection in Guardian Language-System

Vulnerability report for CVE-2026-34109, 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 speech.php (line 18) without sanitization: exec(\"php jobs/speech_audio.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

Showing 1 associated CPE
Vendor Product Version / Range
guardian language-system to commit_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 within the speech.php file. It occurs because the 'id' GET parameter is passed directly into a PHP exec() function call without any sanitization or validation.

As a result, an unauthenticated remote attacker can manipulate the 'id' parameter by appending shell metacharacters, which allows them to execute arbitrary operating system commands on the server.

No authentication is required to exploit this flaw, making it a critical security issue.

Impact Analysis

This vulnerability can have severe impacts including unauthorized remote code execution on the affected server.

  • An attacker can run arbitrary OS commands, potentially leading to full system compromise.
  • Sensitive data stored on the server could be accessed, modified, or deleted.
  • The attacker could use the compromised server as a foothold to launch further attacks within the network.
  • Service disruption or denial of service could occur if malicious commands affect system stability.
Detection Guidance

This vulnerability can be detected by checking for unusual or unauthorized execution of commands on the server, especially related to the speech.php file and the 'id' GET parameter.

One approach is to monitor web server logs for requests to speech.php that include suspicious characters or shell metacharacters in the 'id' parameter.

Additionally, you can test the vulnerability by sending crafted HTTP requests to the speech.php endpoint with shell metacharacters in the 'id' parameter to see if arbitrary commands are executed.

  • Use curl or wget to send a test request: curl "http://yourserver/speech.php?id=;id"
  • Check server process or command execution logs for unexpected commands triggered by such requests.
  • Use intrusion detection systems (IDS) or web application firewalls (WAF) to detect and alert on suspicious requests containing shell metacharacters.
Mitigation Strategies

Immediate mitigation steps include restricting access to the vulnerable speech.php endpoint and applying input validation or sanitization to the 'id' GET parameter to prevent shell metacharacters from being executed.

Since no authentication is required to exploit this vulnerability, implementing authentication or access controls on the speech.php file can reduce exposure.

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

As a temporary measure, consider disabling or restricting the execution of PHP exec() calls in the application or server configuration.

Chat Assistant

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

EPSS Chart