CVE-2026-34113
Received Received - Intake

Command Injection in Guardian Language-System via speech_text.php

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

CVE-2026-34113 is an unauthenticated OS command injection vulnerability in the Guardian language-system, specifically in the speech_text.php file.

The vulnerability occurs because the 'id' GET parameter is passed directly into a PHP exec() call without any sanitization or validation.

This allows an unauthenticated remote attacker to append shell metacharacters to the 'id' parameter and execute arbitrary operating system commands on the server.

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.

Potential impacts include unauthorized access, data theft, data modification, service disruption, or complete system compromise.

Since the attacker does not need to be authenticated, the risk of exploitation is high.

Detection Guidance

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

For example, you can use curl or wget to send requests that include shell commands appended to the 'id' parameter and observe the server response or behavior.

  • curl "http://<target>/speech_text.php?id=1;whoami"
  • curl "http://<target>/speech_text.php?id=1;ls -la"
  • curl "http://<target>/speech_text.php?id=1;cat /etc/passwd"

If the server executes these commands and returns output or behaves differently, it indicates the presence of the vulnerability.

Mitigation Strategies

Immediate mitigation steps include restricting access to the vulnerable speech_text.php endpoint to trusted users or internal networks to prevent unauthenticated exploitation.

Additionally, applying input validation and sanitization on the 'id' GET parameter to prevent shell metacharacters from being executed is critical.

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

As a temporary measure, consider disabling or removing the vulnerable functionality until a proper fix is applied.

Chat Assistant

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

EPSS Chart