Tagged Questions

0
votes
5answers
332 views

RealPath safe?

<?php if (preg_match('/^[a-z0-9]+$/', $_GET['p'])) { $page = realpath('pages/'.$_GET['p'].'.php'); $tpl = realpath('templates/'.$_GET['p'].'.html'); if ($page && $tpl) { include $page; ...