fix: Auth Remote Code execution

This commit is contained in:
d.saschenko
2023-09-28 17:43:58 +03:00
parent 2323e9c0e3
commit 97a075cf63
4 changed files with 89 additions and 9 deletions

View File

@@ -23,9 +23,12 @@ use CachetHQ\Cachet\Models\Meta;
use CachetHQ\Cachet\Services\Dates\DateFactory;
use Carbon\Carbon;
use Illuminate\Contracts\Auth\Guard;
use Twig\Environment as Twig_Environment;
use Twig\Loader\ArrayLoader as Twig_Loader_Array;
/**
* This is the create incident command handler.
*
@@ -49,6 +52,8 @@ class CreateIncidentCommandHandler
*/
protected $dates;
protected $twigConfig;
/**
* Create a new create incident command handler instance.
*
@@ -61,6 +66,8 @@ class CreateIncidentCommandHandler
{
$this->auth = $auth;
$this->dates = $dates;
$this->twigConfig = config("cachet.twig");
}
/**
@@ -131,6 +138,34 @@ class CreateIncidentCommandHandler
return $incident;
}
protected function sandboxedTwigTemplateData(String $templateData) {
if (!$templateData) {
return "";
}
$policy = new \Twig\Sandbox\SecurityPolicy($this->twigConfig["tags"],
$this->twigConfig["filters"],
$this->twigConfig["methods"],
$this->twigConfig["props"],
$this->twigConfig["functions"]);
$sandbox = new \Twig\Extension\SandboxExtension($policy);
$templateBasicLoader = new Twig_Loader_Array([
'firstStageLoader' => $templateData
]);
$sandBoxBasicLoader = new Twig_Loader_Array([
'secondStageLoader' => '{% sandbox %}{% include "firstStageLoader" %} {% endsandbox %}'
]);
$hardenedLoader = new \Twig\Loader\ChainLoader([$templateBasicLoader, $sandBoxBasicLoader]);
$twig = new Twig_Environment($hardenedLoader);
$twig->addExtension($sandbox);
return $twig;
}
/**
* Compiles an incident template into an incident message.
*
@@ -141,8 +176,7 @@ class CreateIncidentCommandHandler
*/
protected function parseTemplate(IncidentTemplate $template, CreateIncidentCommand $command)
{
$env = new Twig_Environment(new Twig_Loader_Array([]));
$template = $env->createTemplate($template->template);
$template = $this->sandboxedTwigTemplateData($template->template);
$vars = array_merge($command->template_vars, [
'incident' => [
@@ -157,7 +191,7 @@ class CreateIncidentCommandHandler
'component_status' => $command->component_status,
],
]);
return $template->render($vars);
return $template->render('secondStageLoader', $vars);
}
}

View File

@@ -47,6 +47,11 @@ class UpdateIncidentCommandHandler
*/
protected $dates;
/**
* Twig configuration array.
*/
protected $twigConfig;
/**
* Create a new update incident command handler instance.
*
@@ -59,6 +64,8 @@ class UpdateIncidentCommandHandler
{
$this->auth = $auth;
$this->dates = $dates;
$this->twigConfig = $twigConfig = config("cachet.twig");
}
/**
@@ -140,6 +147,28 @@ class UpdateIncidentCommandHandler
});
}
protected function sandboxedTwigTemplateData(String $templateData) {
$policy = new \Twig\Sandbox\SecurityPolicy($this->twigConfig["tags"],
$this->twigConfig["filters"],
$this->twigConfig["methods"],
$this->twigConfig["props"],
$this->twigConfig["functions"]);
$sandbox = new \Twig\Extension\SandboxExtension($policy);
$templateBasicLoader = new \Twig\Loader\ArrayLoader([
'firstStageLoader' => $templateData
]);
$sandBoxBasicLoader = new \Twig\Loader\ArrayLoader([
'secondStageLoader' => '{% sandbox %}{% include "firstStageLoader" %} {% endsandbox %}'
]);
$hardenedLoader = new \Twig\Loader\ChainLoader([$templateBasicLoader, $sandBoxBasicLoader]);
$twig = new \Twig\Environment($hardenedLoader);
$twig->addExtension($sandbox);
return $twig;
}
/**
* Compiles an incident template into an incident message.
*
@@ -150,8 +179,7 @@ class UpdateIncidentCommandHandler
*/
protected function parseTemplate(IncidentTemplate $template, UpdateIncidentCommand $command)
{
$env = new Twig_Environment(new Twig_Loader_Array([]));
$template = $env->createTemplate($template->template);
$template = $this->sandboxedTwigTemplateData($template->template);
$vars = array_merge($command->template_vars, [
'incident' => [
@@ -166,7 +194,7 @@ class UpdateIncidentCommandHandler
'component_status' => $command->component_status,
],
]);
return $template->render($vars);
return $template->render('secondStageLoader', $vars);
}
}