java xssprotect_XSS之xssprotect(转)

/**

* Copyright 2008 Gerard Toonstra

*

* As an exception, this particular file

* in the project is public domain to allow totally

* free derivations of this code.

*

*/

package com.blogspot.radialmind.xss;

import java.util.HashSet;

import java.util.Set;

import com.blogspot.radialmind.html.IHTMLFilter;

/**

* Implementation of a relatively simple XSS filter. This implementation removes

* dangerous tags and attributes from tags. It does not verify the validity of

* URL's (that may contain links to JavaScript for example). It does not remove all

* event handlers that may still contain XSS vulnerabilities.

*

* Embedded objects are removed because those may contain XSS vulnerabilities in

* their own scripting language (ActionScript for Flash for example).

*

* Feel free to derive your own implementation from this file.

*

* @author gt

*

*/

public class XSSFilter implements IHTMLFilter {

private static final Set FORBIDDEN_TAGS = new HashSet();

// The tags to be removed. Case insensitive of course.

static {

FORBIDDEN_TAGS.add( "script" );

FORBIDDEN_TAGS.add( "embed" );

FORBIDDEN_TAGS.add( "object" );

FORBIDDEN_TAGS.add( "layer" );

FORBIDDEN_TAGS.add( "style" );

FORBIDDEN_TAGS.add( "meta" );

FORBIDDEN_TAGS.add( "iframe" );

FORBIDDEN_TAGS.add( "frame" );

FORBIDDEN_TAGS.add( "link" );

FORBIDDEN_TAGS.add( "import" );

FORBIDDEN_TAGS.add( "xml" );

}

/**

* This function is called to determine if an attribute should be filtered or not.

*

* @param tagName   The name of the tag the attribute belongs to

* @param attrName  The name of the attribute to be filtered

* @param attrValue The value of the attribute

*/

public boolean filterAttribute(String tagName, String attrName, String attrValue) {

if ( attrName.toLowerCase().startsWith( "on" )) {

return true;

}

return isScriptedAttributeValue( attrValue );

}

/**

*  This method is called to determine if a tag should be filtered

*

* @param tagName   The name of the tag that was parsed

*/

public boolean filterTag(String tagName) {

if ( FORBIDDEN_TAGS.contains( tagName )) {

return true;

}

return false;

}

/**

* This method is called to modify attribute values, if required

*

* @param tagName   The name of the tag the attribute belongs to

* @param attrName  The name of the attribute within the tag

* @param attrValue     The value of the attribute

*/

public String modifyAttributeValue(String tagName, String attrName, String attrValue) {

return attrValue;

}

/**

* This method is called to be able to modify the text of a node.

*

* @param tagName   The name of the tag where the text is part of.

* @param text      The value of the text within the tagnode (within ...)

*/

public String modifyNodeText(String tagName, String text) {

return text;

}

/**

* Private method that determines if an attribute value is scripted

* (potentially loaded with an XSS attack vector).

*

* @param attrValue The value of the attribute

* @return "true" if the attribute is scripted. "false" if not.

*/

private boolean isScriptedAttributeValue( String attrValue ) {

attrValue = decode( attrValue );

attrValue = attrValue.trim().toLowerCase();

if ( attrValue.contains( "javascript:" )) {

return true;

}

if ( attrValue.contains( "mocha:" )) {

return true;

}

if ( attrValue.contains( "eval" )) {

return true;

}

if ( attrValue.contains( "vbscript:" )) {

return true;

}

if ( attrValue.contains( "livescript:" )) {

return true;

}

if ( attrValue.contains( "expression(" )) {

return true;

}

if ( attrValue.contains( "url(" )) {

return true;

}

if ( attrValue.contains( "&{" )) {

return true;

}

if ( attrValue.contains( "" )) {

return true;

}

return false;

}

/**

* Private method to remove control characters from the value

*

* @param value The value being modified

* @return  The value free from control characters

*/

private String decode( String value ) {

value = value.replace("\u0000", "" );

value = value.replace("\u0001", "" );

value = value.replace("\u0002", "" );

value = value.replace("\u0003", "" );

value = value.replace("\u0004", "" );

value = value.replace("\u0005", "" );

value = value.replace("\u0006", "" );

value = value.replace("\u0007", "" );

value = value.replace("\u0008", "" );

value = value.replace("\u0009", "" );

value = value.replace("\n", "" );

value = value.replace("\u000B", "" );

value = value.replace("\u000C", "" );

value = value.replace("\r", "" );

value = value.replace("\u000E", "" );

value = value.replace("\u000F", "" );

value = value.replace("\u0010", "" );

value = value.replace("\u0011", "" );

value = value.replace("\u0012", "" );

value = value.replace("\u0013", "" );

value = value.replace("\u0014", "" );

value = value.replace("\u0015", "" );

value = value.replace("\u0016", "" );

value = value.replace("\u0017", "" );

value = value.replace("\u0018", "" );

value = value.replace("\u0019", "" );

value = value.replace("\u001A", "" );

value = value.replace("\u001B", "" );

value = value.replace("\u001C", "" );

value = value.replace("\u001D", "" );

value = value.replace("\u001E", "" );

value = value.replace("\u001F", "" );

return value;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值