mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/security/275] Gracefully handle exceptions thrown by wrong cron route
SECURITY-275
This commit is contained in:
parent
378c63b002
commit
fd550bc25a
1 changed files with 19 additions and 5 deletions
|
@ -12,6 +12,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\RedirectResponse;
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
use Symfony\Component\Routing\Exception\ExceptionInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
|
@ -30,8 +32,20 @@ $get_params_array = $request->get_super_global(\phpbb\request\request_interface:
|
||||||
|
|
||||||
/** @var \phpbb\controller\helper $controller_helper */
|
/** @var \phpbb\controller\helper $controller_helper */
|
||||||
$controller_helper = $phpbb_container->get('controller.helper');
|
$controller_helper = $phpbb_container->get('controller.helper');
|
||||||
$response = new RedirectResponse(
|
try
|
||||||
|
{
|
||||||
|
$response = new RedirectResponse(
|
||||||
$controller_helper->route('phpbb_cron_run', $get_params_array, false),
|
$controller_helper->route('phpbb_cron_run', $get_params_array, false),
|
||||||
301
|
Response::HTTP_MOVED_PERMANENTLY
|
||||||
);
|
);
|
||||||
$response->send();
|
$response->send();
|
||||||
|
}
|
||||||
|
catch(ExceptionInterface $exception)
|
||||||
|
{
|
||||||
|
$language = $phpbb_container->get('language');
|
||||||
|
$response = new Response(
|
||||||
|
$language->lang('PAGE_NOT_FOUND'),
|
||||||
|
Response::HTTP_BAD_REQUEST
|
||||||
|
);
|
||||||
|
$response->send();
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue