ez-pro/core/bitrix/tools/vote/vote_chart.php
2025-11-13 19:04:05 +03:00

13 lines
469 B
PHP

<?
$file = preg_replace(array("#[\\\\\\/]+#", "#\\.+[\\\\\\/]#"), array("/", ""), (isset($_REQUEST["file"]) && is_string($_REQUEST["file"]) ? $_REQUEST["file"] : ""));
if(($p = mb_strpos($file, "\0"))!==false)
$file = mb_substr($file, 0, $p);
if (mb_strpos($file, "/vote/") !== false)
{
if (mb_strpos($file, "/bitrix/modules/vote/install/templates/vote/") === 0 ||
mb_strpos($file, "/bitrix/templates/") === 0) @include($_SERVER["DOCUMENT_ROOT"]."/".$file);
}
?>