php怎么修复xss漏洞 xss漏洞的修复方式

主机教程 建站分享 2年前 (2022-10-22) 199次浏览

文章摘要:php怎么修复xss漏洞 xss漏洞的修复方式

使用php对xss漏洞进行修复,具体方法如下: function search($query, $page) […]

使用php对xss漏洞进行修复,具体方法如下:

function search($query, $page)

{

global $db, $bgcolor2, $bgcolor4, $sitename, $io_db, $module_url, $list_page_items, $hm_index;

$option = trim($option);

$query = trim($query);

$query = FixQuotes(nl2br(filter_text($query)));

$db->escape_string($query);

$db->escape_string($option);

alpha_search($query);

$query = FixQuotes(nl2br(filter_text(htmlentities($query))));


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:php怎么修复xss漏洞 xss漏洞的修复方式
文章链接:http://www.7966.org/post/14902.html
转载请注明出处

喜欢 (0)