摘要:查阅官方文档后得知,新版为了防止对象的序列化反序列化漏洞被利用,不再对值进行自动的序列化和反序列化处理。举个栗子更新到后,因为不再自动对值进行序列化处理,而只能加密字符串数据,这个时候程序就会抛出错误。
最近手残升级了项目里 Laravel 的小版本号(v5.5.39 => v5.5.45),这不升级则已,一升级就出了问题!
Sentry 平台上提示错误:openssl_encrypt() expects parameter 1 to be string, array given,具体报错记录如下:
ErrorException openssl_encrypt() expects parameter 1 to be string, array given vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php in handleError at line 91 vendor/sentry/sentry/lib/Raven/Breadcrumbs/ErrorHandler.php in handleError at line 34 vendor/sentry/sentry/lib/Raven/Breadcrumbs/ErrorHandler.php in openssl_encrypt vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php in encrypt at line 91 vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php in encrypt at line 139 vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php in handle at line 66 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in IlluminatePipeline{closure} at line 149 vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php in IlluminateRouting{closure} at line 53 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in then at line 102 vendor/laravel/framework/src/Illuminate/Routing/Router.php in runRouteWithinStack at line 660 vendor/laravel/framework/src/Illuminate/Routing/Router.php in runRoute at line 635 vendor/laravel/framework/src/Illuminate/Routing/Router.php in dispatchToRoute at line 601 vendor/laravel/framework/src/Illuminate/Routing/Router.php in dispatch at line 590 vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php in IlluminateFoundationHttp{closure} at line 176 vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php in IlluminateRouting{closure} at line 30 vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php in handle at line 58 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in IlluminatePipeline{closure} at line 149 vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php in IlluminateRouting{closure} at line 53 vendor/fideloper/proxy/src/TrustProxies.php in handle at line 56 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in IlluminatePipeline{closure} at line 149 vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php in IlluminateRouting{closure} at line 53 vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php in handle at line 30 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in IlluminatePipeline{closure} at line 149 vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php in IlluminateRouting{closure} at line 53 vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php in handle at line 30 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in IlluminatePipeline{closure} at line 149 vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php in IlluminateRouting{closure} at line 53 vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php in handle at line 27 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in IlluminatePipeline{closure} at line 149 vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php in IlluminateRouting{closure} at line 53 vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php in handle at line 46 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in IlluminatePipeline{closure} at line 149 vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php in IlluminateRouting{closure} at line 53 vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php in then at line 102 vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php in sendRequestThroughRouter at line 151 vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php in handle at line 116 public/index.php at line 55
仔细查看上面的异常堆栈记录,并且进行断点调试,最终确定是由于 Laravel 5.5 升级小版本后 Cookie 加密的逻辑变动所导致的报错。
查阅 Laravel 官方文档(Laravel 5.5 Upgrade Guide)后得知,Laravel 新版为了防止 PHP 对象的序列化/反序列化漏洞被利用,不再对 Cookie 值进行自动的序列化和反序列化处理。
举个栗子:
Cookie::queue("user", ["id" => 1, "name" => "admin"], 720, "/")
Laravel 更新到 v5.5.42 后,因为 Laravel 不再自动对 Cookie 值 ["id" => 1, "name" => "admin"] 进行序列化处理,而 openssl_encrypt ( string $data ... ) 只能加密字符串数据,这个时候程序就会抛出错误:openssl_encrypt() expects parameter 1 to be string, array given。
解决方法:
新版里面在中间件 AppHttpMiddlewareEncryptCookies 新增静态属性 $serialize,当设置为 true 时可开启 Cookie 值的自动序列化和反序列化处理。
/** * Indicates if cookies should be serialized. * * @var bool */ protected static $serialize = true;
【推荐】将 Cookie 值使用 JSON 函数编码成字符串后再进行存储(获取 Cookie 值后需调用 JSON 函数进行解码)。
Cookie::queue("user", json_encode(["id" => 1, "name" => "admin"]), 720, "/");
-EOF-
首发于知乎专栏《PHP和Laravel学习》:https://zhuanlan.zhihu.com/p/...
扫码关注《PHP和Laravel学习》微信公众号:
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/31203.html
摘要:今天从迁移项目到,其中遇到了一些问题。在此记一下,希望可以帮助到遇到此文章的童鞋。因为我的是在虚拟机新开的,没有环境。 今天从mac迁移laravel项目到Ubuntu,其中遇到了一些问题。在此记一下,希望可以帮助到遇到此文章的童鞋。 因为我的Ubuntu(16.04)是在虚拟机新开的,没有环境。lnmp.org下载lnmp1.3-full集成环境,但是当时在选择php版本的时候我手一...
摘要:今天从迁移项目到,其中遇到了一些问题。在此记一下,希望可以帮助到遇到此文章的童鞋。因为我的是在虚拟机新开的,没有环境。 今天从mac迁移laravel项目到Ubuntu,其中遇到了一些问题。在此记一下,希望可以帮助到遇到此文章的童鞋。 因为我的Ubuntu(16.04)是在虚拟机新开的,没有环境。lnmp.org下载lnmp1.3-full集成环境,但是当时在选择php版本的时候我手一...
摘要:最适合入门的初级教程二看这篇文章的时候你需要安装好配置好本地环境环境搞定后咱来说的下载这里先解决一些童鞋可能有的疑惑的版本更新的那么快从到现在的了我应该下载那个学习呢新出的版本的文档资料丰富么作为一个过来人可以大胆的说学习最新版本没问题除了 最适合入门的 Laravel 初级教程 (二) 看这篇文章的时候;你需要安装好 composer ;配置好本地环境; 环境搞定后; 咱来说lara...
摘要:通过安装器首先,通过安装安装器确保在系统路径中中对应路径是,对应路径是,其中表示当前用户家目录,否则不能在命令行任意路径下调用命令。安装完成后,通过简单的命令即可在当前目录下创建一个新的应用,例如,将会创建一个名为的新应用,且包含所有依赖。 配置laravel-admin 官方的教程还是没问题的,但也遇到了一点点小小坑,再次做个记录吧 安装 LaravelLaravel 使用 Comp...
摘要:此项目前端使用框架,加上这些常用扩展后的其中还加入了加载器解析工具前端动画等,不需要的可以自行删除。没有的,需要设置淘宝镜像,下载的是国外的镜像,速度慢而且可能出现下载失败的问题。 本篇只是实现了 基础 的功能,对于实际的项目中的权限等还未涉及,这些会在后期逐步完善。相关项目 laravel-vue-iview 的 GitHub 地址 戳这里,此项目基本可用于实际开发工作。 Lara...
阅读 1192·2023-04-26 00:47
阅读 3529·2021-11-16 11:53
阅读 753·2021-10-08 10:05
阅读 2715·2021-09-22 15:19
阅读 2952·2019-08-30 15:55
阅读 2728·2019-08-29 16:55
阅读 2885·2019-08-29 15:20
阅读 1072·2019-08-23 16:13