magento XSS漏洞 介紹就不說了 百度一下 處處都是php
這邊簡單記錄下 處理過程, (比較粗暴,是否有效還沒有驗證)html
編輯安全
app/design/adminhtml/default/default/template/sales/order/view/info.phtmlapp
文件ide
搜索 getCustomerEmail htm
有兩處 輸出調用get
使用 htmlentities 方法過濾處理 便可 以下:it
<td class="value"> <a href="mailto:<?php echo htmlentities($_order->getCustomerEmail()); ?>"> <strong> <?php echo htmlentities($_order->getCustomerEmail()); ?> </strong> </a> </td>
PS: 主要是雲ECS 老提示安全問題, 如此處理後 煩人的提示就沒了,至因而否有效可用,有須要的能夠驗證下 ,若有不對 歡迎拍磚 :)class