码迷,mamicode.com
首页 > Web开发 > 详细

php安全 过滤、验证、转义

时间:2018-07-17 23:24:32      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:bsp   std   外部   you   rip   input   argv   put   cti   

不要相信外部源

  • $_GET
  • $_POST
  • $_REQUEST
  • $_COOKIE
  • $argv
  • php://stdin
  • php://input
  • file_get_contents()
  • 远程数据库
  • 远程api
  • 来自客户端的数据

htmlentities

<?php
$input = ‘<p><script>alert("You won the Nigerian lottery!");</script></p>‘;
echo htmlentities($input, ENT_QUOTES, ‘UTF-8‘);
// <p><script>alert("You won the Nigerian lottery!");</script></p>

  

htmlpurifier

 

php安全 过滤、验证、转义

标签:bsp   std   外部   you   rip   input   argv   put   cti   

原文地址:https://www.cnblogs.com/mingzhanghui/p/9326322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!