mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/security-196] Escapes the exception messages before displaying them
SECURITY-196
This commit is contained in:
parent
4cdec74e94
commit
23bdb2eede
1 changed files with 5 additions and 0 deletions
|
@ -34,6 +34,9 @@ class kernel_exception_subscriber implements EventSubscriberInterface
|
||||||
*/
|
*/
|
||||||
protected $user;
|
protected $user;
|
||||||
|
|
||||||
|
/** @var \phpbb\request\type_cast_helper */
|
||||||
|
protected $type_caster;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct method
|
* Construct method
|
||||||
*
|
*
|
||||||
|
@ -44,6 +47,7 @@ class kernel_exception_subscriber implements EventSubscriberInterface
|
||||||
{
|
{
|
||||||
$this->template = $template;
|
$this->template = $template;
|
||||||
$this->user = $user;
|
$this->user = $user;
|
||||||
|
$this->type_caster = new \phpbb\request\type_cast_helper();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -57,6 +61,7 @@ class kernel_exception_subscriber implements EventSubscriberInterface
|
||||||
$exception = $event->getException();
|
$exception = $event->getException();
|
||||||
|
|
||||||
$message = $exception->getMessage();
|
$message = $exception->getMessage();
|
||||||
|
$this->type_caster->set_var($message, $message, 'string', false, false);
|
||||||
|
|
||||||
if ($exception instanceof \phpbb\exception\exception_interface)
|
if ($exception instanceof \phpbb\exception\exception_interface)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue