1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-13 04:13:29 +02:00

Merge pull request #27 from phpbb/ticket/security-196

[ticket/security-196] Escapes the exception messages before displaying them
This commit is contained in:
Marc Alexander 2016-10-02 22:25:30 +01:00
commit 40354f1f90
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -34,6 +34,9 @@ class kernel_exception_subscriber implements EventSubscriberInterface
*/
protected $user;
/** @var \phpbb\request\type_cast_helper */
protected $type_caster;
/**
* Construct method
*
@ -44,6 +47,7 @@ class kernel_exception_subscriber implements EventSubscriberInterface
{
$this->template = $template;
$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();
$message = $exception->getMessage();
$this->type_caster->set_var($message, $message, 'string', false, false);
if ($exception instanceof \phpbb\exception\exception_interface)
{