From 0cd7f5a4615eaff707a8f5e8ac4b492cb10f16e2 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 15 Aug 2019 10:30:18 -0600 Subject: [PATCH] Update exec.php --- app/exec/exec.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/exec/exec.php b/app/exec/exec.php index 24847d1b81..c53f75a228 100644 --- a/app/exec/exec.php +++ b/app/exec/exec.php @@ -469,7 +469,7 @@ switch ($handler) { case 'shell': if (permission_exists('exec_command') && $command_authorized) { - $result = escape(shell_exec($command . " 2>&1")); + $result = shell_exec($command . " 2>&1"); } break; case 'php':