PHP嵌套菜单安全性问题

来自新手:

在试图显示修改后的嵌套菜单How to create a nested menu from MySQL with PHP?时.我的问题是:采用这种方法是否存在安全方面的问题.
从我的新手角度来看,此代码是服务器端的代码,只是在加载页面时触发查询.

欢迎所有见解和建议.谢谢.

<?php
include '../data.php'; // connection folder  

$query = "SELECT `parent_name`, `parent_id`, `child_name`, child_id
            FROM  `pages.child` INNER JOIN `pages.parent`
            ORDER BY `parent_name`";

$result = mysql_query($query) or die(mysql_error());
echo "<ul id=\"catmenu\">";
$last_parent = '';
while($row = mysql_fetch_array($result)){
    if($last_parent != $row['parent_name']){
            // Unless this is the first item, close the last category
            if($last_parent != ''){
                    echo "</ul></li>";
            }
            // Parent menu begins <li> and <ul>
            $last_parent = $row['parent_name'];
            $tags = $row['parent_name'];               
            echo "<a href=\"$tags\"><li class=\"menulist\">{$tags}<ul></a>";
    }
    if($row['parent_id'] === $row['child_id'] ){
        $tags = $row['parent_name'];
        $tag = $row['child_name'];
        echo "<li class=\"menulist\"><a href=\"$tags\\$tag\">$tag</a>";
        }        
}
if($last_parent != ''){
    echo "</ul></li>";
}
echo "</ul>";

?>

解决方法:

如果数据库表中的值以前是用户输入的,请确保在输出它们之前使用htmlentities()对其进行转义.例如,替换以下行:

$tags = $row['parent_name'];

有了这个:

$tags = htmlentities($row['parent_name']);

使用htmlentities()可以防止称为cross-site scripting的漏洞,这是我在这种情况下可以看到的唯一安全问题.

上一篇:从Python中的嵌套子类访问父变量


下一篇:php-如何防止嵌套函数调用?