云服务器网:购买云服务器和VPS必上的网站!

xss:xss攻击如何修复

xss攻击如何修复xss攻击的修复方案:1.对输入的数据进行HTML转义,使其不会辨认为可履行脚本,例如:Stringresult=HtmlUtils.htmlEscape(source);2.根据白名单的标签和属性对数据进行过滤,对可履行的脚本进行清除,例如

xss攻击如何修复

xss攻击的修复方案:

1.对输入的数据进行HTML转义,使其不会辨认为可履行脚本,例如:

Stringresult=HtmlUtils.htmlEscape(source);

2.根据白名单的标签和属性对数据进行过滤,对可履行的脚本进行清除,例如:

<!--https://mvnrepository.com/artifact/org.jsoup/jsoup-->

<dependency>

<groupId>org.jsoup</groupId>

<artifactId>jsoup</artifactId>

<version>1.13.1</version>

</dependency>

Stringresult=Jsoup.clean(source,Whitelist.basic());

//默许的基础白名单配置

publicstaticWhitelistbasic(){

returnnewWhitelist()

.addTags(

"a","b","blockquote","br","cite","code","dd","dL","dt","em",

"i","Li","oL","p","pre","q","small","span","strike","strong","sub"

"sup","U","uL")

.addAttributes(tag:"a",...attributes:"href")

.addAttributes(tag:”bLockquote",...attributes:"cite")

.addAttributes(tag:"q",...attritoutes:"cite")

.addProtocols(tag:"a",attribute:"href",...potocols:"ftp","http","https","mailto")

.addProtocols(tag:"bLockquote",attribute:"cite",...protocolo:"http","https")

.addProtocols(tag:"cite",attribute:"cite",...protocols:"http","https")

.addEnforcedAttribute(tag:"a",attribute:"rel",value:"nofollow")

;

}

本文来源:https://www.yuntue.com/post/62827.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注