Laravel 5 中防止 XSS 跨站攻击的例子
发布:smiling 来源: PHP粉丝网 添加日期:2018-10-17 09:35:05 浏览: 评论:0
本文实例讲述了Laravel5中防止XSS跨站攻击的方法。小编分享给大家供大家参考,具体如下:
Laravel 5本身没有这个能力来防止xss跨站攻击了,但是这它可以使用Purifier 扩展包集成 HTMLPurifier 防止 XSS 跨站攻击。
1、安装
HTMLPurifier 是基于 PHP 编写的富文本 HTML 过滤器,通常我们可以使用它来防止 XSS 跨站攻击,更多关于 HTMLPurifier的详情请参考其官网:http://htmlpurifier.org/。Purifier 是在 Laravel 5 中集成 HTMLPurifier 的扩展包,我们可以通过 Composer 来安装这个扩展包:
composer require mews/purifier
安装完成后,在配置文件config/app.php的providers中注册HTMLPurifier服务提供者:
- 'providers' => [
- // ...
- MewsPurifierPurifierServiceProvider::class,
- ]
然后在aliases中注册Purifier门面:
- 'aliases' => [
- // ...
- 'Purifier' => MewsPurifierFacadesPurifier::class,
- ]
2、配置
要使用自定义的配置,发布配置文件到config目录:
php artisan vendor:publish
这样会在config目录下生成一个purifier.php文件:
- return [
- 'encoding' => 'UTF-8',
- 'finalize' => true,
- 'preload' => false,
- 'cachePath' => null,
- 'settings' => [
- 'default' => [
- 'HTML.Doctype' => 'XHTML 1.0 Strict',
- 'HTML.Allowed' => 'div,b,strong,i,em,a[href|title],ul,ol,li,p[style],br,span[style],img[width|height|alt|src]',
- 'CSS.AllowedProperties' => 'font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align',
- 'AutoFormat.AutoParagraph' => true,
- 'AutoFormat.RemoveEmpty' => true
- ],
- 'test' => [
- 'Attr.EnableID' => true
- ],
- "youtube" => [
- "HTML.SafeIframe" => 'true',
- "URI.SafeIframeRegexp" => "%^(http://|https://|//)(www.youtube.com/embed/|player.vimeo.com/video/)%",
- ],
- ],
- ];
3、使用示例
可以使用辅助函数clean:
clean(Input::get('inputname'));
或者使用Purifier门面提供的clean方法:
Purifier::clean(Input::get('inputname'));
还可以在应用中进行动态配置:
clean('This is my H1 title', 'titles');
clean('This is my H1 title', array('Attr.EnableID' => true));
或者你也可以使用Purifier门面提供的方法:
Purifier::clean('This is my H1 title', 'titles');
Purifier::clean('This is my H1 title', array('Attr.EnableID' => true));
php防止xss攻击
- <?PHP
- function clean_xss(&$string, $low = False)
- {
- if (! is_array ( $string ))
- {
- $string = trim ( $string );
- $string = strip_tags ( $string );
- $string = htmlspecialchars ( $string );
- if ($low)
- {
- return True;
- }
- $string = str_replace ( array ('"', "\\", "'", "/", "..", "../", "./", "//" ), '', $string );
- $no = '/%0[0-8bcef]/';
- $string = preg_replace ( $no, '', $string );
- $no = '/%1[0-9a-f]/';
- $string = preg_replace ( $no, '', $string );
- $no = '/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]+/S';
- $string = preg_replace ( $no, '', $string );
- return True;
- }
- $keys = array_keys ( $string );
- foreach ( $keys as $key )
- { //phpfensi.com
- clean_xss ( $string [$key] );
- }
- }
- //just a test
- $str = 'phpfensi.com<meta http-equiv="refresh" content="0;">';
- clean_xss($str); //如果你把这个注释掉,你就知道xss攻击的厉害了
- echo $str;
- ?>
Tags: Laravel XSS
相关文章
- ·Laravel4创建一个占位图片服务例子(2014-06-18)
- ·深入解析Laravel5.5中的包自动发现Package Auto Discovery(2018-09-13)
- ·Laravel学习教程之request validation的编写(2018-09-13)
- ·Laravel框架实现利用中间件进行操作日志记录功能(2018-09-14)
- ·Laravel 集成的 Monolog 库对日志进行配置和记录实例(2018-09-14)
- ·Laravel Elixir运行glup命令:Error in plugin ‘gulp-notify’(2018-09-15)
- ·Laravel中为什么不使用blpop取队列详析(2018-10-19)
- ·php7跑laravel5.0报错,异常Carbon::createFromFormat()(2018-10-23)
- ·Laravel Memcached缓存驱动的配置应用实例(2018-10-30)
- ·Laravel memcached缓存对文章增删改查进行优化例子(2018-10-30)
- ·Laravel 中通过 Artisan View 扩展包创建及删除应用视图文件(2018-10-30)
- ·laravel项目利用twemproxy部署redis集群的完整步骤(2018-11-07)
- ·Laravel框架实现利用监听器进行sql语句记录功能(2018-11-07)
- ·Laravel框架模板继承操作示例(2018-11-14)
- ·Laravel框架实现定时发布任务的方法(2018-11-15)
- ·Laravel中错误与异常处理的用法示例(2018-11-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)