CVE-2026-34115
Received Received - Intake

Command Injection in Guardian Language-System

Vulnerability report for CVE-2026-34115, 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 transcribe_amazon.php (line 15) without sanitization: exec(\"php jobs/transcribe_amazon.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 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 is an unauthenticated OS command injection in the Guardian Language-System, specifically in the transcribe_amazon.php file.

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

As a result, an attacker can append shell metacharacters to the id parameter and execute arbitrary operating system commands on the server.

No authentication is required to exploit this vulnerability, making it highly critical.

Impact Analysis

This vulnerability allows an unauthenticated remote attacker to execute arbitrary OS commands on the server hosting the Guardian Language-System.

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

Because no authentication is required, the risk of exploitation is very high.

Detection Guidance

This vulnerability can be detected by monitoring for unusual or unauthorized execution of the transcribe_amazon.php script, especially calls including the id GET parameter with suspicious shell metacharacters.

You can check web server logs for requests to transcribe_amazon.php that include suspicious characters such as ;, &, |, or $ in the id parameter.

Example commands to detect potential exploitation attempts include:

  • Using grep to find suspicious requests in access logs: grep -E "transcribe_amazon.php.*id=.*[;&|$]" /var/log/apache2/access.log
  • Using curl or wget to test if the vulnerability exists by sending crafted requests with shell metacharacters in the id parameter (only in a controlled environment): curl "http://target/transcribe_amazon.php?id=1;id"
  • Monitoring running processes for unexpected commands spawned by the web server user.
Mitigation Strategies

Immediate mitigation steps include:

  • Restrict access to the transcribe_amazon.php script by implementing authentication or IP whitelisting to prevent unauthenticated remote access.
  • Apply input validation and sanitization on the id GET parameter to prevent shell metacharacters from being passed to the exec() call.
  • If possible, update or patch the Guardian language-system to a version that addresses this vulnerability.
  • As a temporary measure, disable or restrict execution of PHP scripts that invoke exec() with user-supplied input.
  • Monitor logs for exploitation attempts and respond accordingly.

Chat Assistant

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

EPSS Chart