dedecms v5.7 qrcode二维码XSS跨站脚本漏洞修复:
打开 /plus/qrcode.php 找到,大概在第8行
<span style="font-size:14px;">$type = isset($type)? $type : '';</span> |
修改为:
<span style="font-size:14px;">$type = isset($type)? RemoveXSS(HtmlReplace($type,3)) : '';</span> |
dedecms v5.7 qrcode二维码XSS跨站脚本漏洞修复:
打开 /plus/qrcode.php 找到,大概在第8行
<span style="font-size:14px;">$type = isset($type)? $type : '';</span> |
修改为:
<span style="font-size:14px;">$type = isset($type)? RemoveXSS(HtmlReplace($type,3)) : '';</span> |