For a secure url query, what is more secure? filter_var($string, FILTER_SANITIZE_SPECIAL_CHARS) or htmlentities ?
2条回答 默认 最新
dongsuikai8286 2010-07-06 17:37关注What are you defending against? A vulnerability is highly dependent on how the data is being used. Its impossible to create 1 function call that protects against everything, and mixing protection systems (like xss and sql injection) is a very bad idea.
For XSS you should use:
htmlspecialchars($var, ENT_QUOTES);For Sql Injection in mysql you should use
mysql_real_escape_string($var);If you are passing user input to
system()or another similar function then you should useescapeshellarg($var);These are the top 3 and mixing these will cause nothing but problems.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报