Package org.apache.sling.xss.impl
Class XSSAPIImpl
- java.lang.Object
-
- org.apache.sling.xss.impl.XSSAPIImpl
-
-
Constructor Summary
Constructors Constructor Description XSSAPIImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidactivate()protected voiddeactivate()StringencodeForCSSString(String source)Encodes a source string for writing to CSS string content.StringencodeForHTML(String source)Encodes a source string for HTML element content.StringencodeForHTMLAttr(String source)Encodes a source string for writing to an HTML attribute value.StringencodeForJSString(String source)Encodes a source string for writing to JavaScript string content.StringencodeForXML(String source)Encodes a source string for XML element content.StringencodeForXMLAttr(String source)Encodes a source string for writing to an XML attribute value.@NotNull StringfilterHTML(String source)Filters potentially user-contributed HTML to meet the AntiSamy policy rules currently in effect for HTML output (see the XSSFilter service for details).StringgetValidCSSColor(String color, String defaultColor)Validate a CSS color value.StringgetValidDimension(String dimension, String defaultValue)Validate a string which should contain a dimension, returning a default value if the source is empty, can't be parsed, or contains XSS risks.DoublegetValidDouble(String source, double defaultValue)Validate a string which should contain an double, returning a default value if the source isnull, empty, can't be parsed, or contains XSS risks.@NotNull StringgetValidHref(String url)Sanitizes a URL for writing as an HTML href or src attribute value.IntegergetValidInteger(String integer, int defaultValue)Validate a string which should contain an integer, returning a default value if the source isnull, empty, can't be parsed, or contains XSS risks.StringgetValidJSON(String json, String defaultJson)Validate a JSON stringStringgetValidJSToken(String token, String defaultValue)Validate a Javascript token.LonggetValidLong(String source, long defaultValue)Validate a string which should contain a long, returning a default value if the source isnull, empty, can't be parsed, or contains XSS risks.StringgetValidMultiLineComment(String comment, String defaultComment)Validate multi-line comment to be used inside a <script>...</script> or <style>...</style> block.StringgetValidStyleToken(String token, String defaultValue)Validate a style/CSS token.StringgetValidXML(String xml, String defaultXml)Validate an XML string
-
-
-
Method Detail
-
activate
protected void activate()
-
deactivate
protected void deactivate()
-
getValidInteger
public Integer getValidInteger(String integer, int defaultValue)
Description copied from interface:XSSAPIValidate a string which should contain an integer, returning a default value if the source isnull, empty, can't be parsed, or contains XSS risks.- Specified by:
getValidIntegerin interfaceXSSAPI- Parameters:
integer- the source integerdefaultValue- a default value if the source can't be used, isnullor an empty string- Returns:
- a sanitized integer
- See Also:
XSSAPI.getValidInteger(String, int)
-
getValidLong
public Long getValidLong(String source, long defaultValue)
Description copied from interface:XSSAPIValidate a string which should contain a long, returning a default value if the source isnull, empty, can't be parsed, or contains XSS risks.- Specified by:
getValidLongin interfaceXSSAPI- Parameters:
source- the source longdefaultValue- a default value if the source can't be used, isnullor an empty string- Returns:
- a sanitized integer
- See Also:
XSSAPI.getValidLong(String, long)
-
getValidDouble
public Double getValidDouble(String source, double defaultValue)
Description copied from interface:XSSAPIValidate a string which should contain an double, returning a default value if the source isnull, empty, can't be parsed, or contains XSS risks.- Specified by:
getValidDoublein interfaceXSSAPI- Parameters:
source- the source doubledefaultValue- a default value if the source can't be used, isnullor an empty string- Returns:
- a sanitized double
- See Also:
XSSAPI.getValidDouble(String, double)
-
getValidDimension
public String getValidDimension(String dimension, String defaultValue)
Description copied from interface:XSSAPIValidate a string which should contain a dimension, returning a default value if the source is empty, can't be parsed, or contains XSS risks. Allows integer dimensions and the keyword "auto".- Specified by:
getValidDimensionin interfaceXSSAPI- Parameters:
dimension- the source dimensiondefaultValue- a default value if the source can't be used, isnullor an empty string- Returns:
- a sanitized dimension
- See Also:
XSSAPI.getValidDimension(String, String)
-
getValidHref
@NotNull public @NotNull String getValidHref(String url)
Description copied from interface:XSSAPISanitizes a URL for writing as an HTML href or src attribute value.- Specified by:
getValidHrefin interfaceXSSAPI- Parameters:
url- the source URL- Returns:
- a sanitized URL (possibly empty)
- See Also:
XSSAPI.getValidHref(String)
-
getValidJSToken
public String getValidJSToken(String token, String defaultValue)
Description copied from interface:XSSAPIValidate a Javascript token. The value must be either a single identifier, a literal number, or a literal string.- Specified by:
getValidJSTokenin interfaceXSSAPI- Parameters:
token- the source tokendefaultValue- a default value to use if the source isnull, an empty string, or doesn't meet validity constraints.- Returns:
- a string containing a single identifier, a literal number, or a literal string token
- See Also:
XSSAPI.getValidJSToken(String, String)
-
getValidStyleToken
public String getValidStyleToken(String token, String defaultValue)
Description copied from interface:XSSAPIValidate a style/CSS token. Valid CSS tokens are specified at http://www.w3.org/TR/css3-syntax/- Specified by:
getValidStyleTokenin interfaceXSSAPI- Parameters:
token- the source tokendefaultValue- a default value to use if the source isnull, an empty string, or doesn't meet validity constraints.- Returns:
- a string containing sanitized style token
- See Also:
XSSAPI.getValidStyleToken(String, String)
-
getValidCSSColor
public String getValidCSSColor(String color, String defaultColor)
Description copied from interface:XSSAPIValidate a CSS color value. Color values as specified at http://www.w3.org/TR/css3-color/#colorunits are safe and definitively allowed. Vulnerable constructs will be disallowed. Currently known vulnerable constructs include url(...), expression(...), and anything with a semicolon.- Specified by:
getValidCSSColorin interfaceXSSAPI- Parameters:
color- the color value to be used.defaultColor- a default value to use if the input color value isnull, an empty string, doesn't meet validity constraints.- Returns:
- a string a css color value.
- See Also:
XSSAPI.getValidCSSColor(String, String)
-
getValidMultiLineComment
public String getValidMultiLineComment(String comment, String defaultComment)
Description copied from interface:XSSAPIValidate multi-line comment to be used inside a <script>...</script> or <style>...</style> block. Multi-line comment end block is disallowed.- Specified by:
getValidMultiLineCommentin interfaceXSSAPI- Parameters:
comment- the comment to be useddefaultComment- a default value to use if the comment isnullor not valid.- Returns:
- a valid multi-line comment
- See Also:
XSSAPI.getValidMultiLineComment(String, String)
-
getValidJSON
public String getValidJSON(String json, String defaultJson)
Description copied from interface:XSSAPIValidate a JSON string- Specified by:
getValidJSONin interfaceXSSAPI- Parameters:
json- the JSON string to validatedefaultJson- the default value to use ifjsonisnullor not valid- Returns:
- a valid JSON string
- See Also:
XSSAPI.getValidJSON(String, String)
-
getValidXML
public String getValidXML(String xml, String defaultXml)
Description copied from interface:XSSAPIValidate an XML string- Specified by:
getValidXMLin interfaceXSSAPI- Parameters:
xml- the XML string to validatedefaultXml- the default value to use ifxmlisnullor not valid- Returns:
- a valid XML string
- See Also:
XSSAPI.getValidXML(String, String)
-
encodeForHTML
public String encodeForHTML(String source)
Description copied from interface:XSSAPIEncodes a source string for HTML element content. DO NOT USE FOR WRITING ATTRIBUTE VALUES!- Specified by:
encodeForHTMLin interfaceXSSAPI- Parameters:
source- the input to encode- Returns:
- an encoded version of the source
- See Also:
XSSAPI.encodeForHTML(String)
-
encodeForHTMLAttr
public String encodeForHTMLAttr(String source)
Description copied from interface:XSSAPIEncodes a source string for writing to an HTML attribute value. DO NOT USE FOR ACTIONABLE ATTRIBUTES (href, src, event handlers); YOU MUST USE A VALIDATOR FOR THOSE!- Specified by:
encodeForHTMLAttrin interfaceXSSAPI- Parameters:
source- the input to encode- Returns:
- an encoded version of the source
- See Also:
XSSAPI.encodeForHTMLAttr(String)
-
encodeForXML
public String encodeForXML(String source)
Description copied from interface:XSSAPIEncodes a source string for XML element content. DO NOT USE FOR WRITING ATTRIBUTE VALUES!- Specified by:
encodeForXMLin interfaceXSSAPI- Parameters:
source- the input to encode- Returns:
- an encoded version of the source
- See Also:
XSSAPI.encodeForXML(String)
-
encodeForXMLAttr
public String encodeForXMLAttr(String source)
Description copied from interface:XSSAPIEncodes a source string for writing to an XML attribute value.- Specified by:
encodeForXMLAttrin interfaceXSSAPI- Parameters:
source- the input to encode- Returns:
- an encoded version of the source
- See Also:
XSSAPI.encodeForXMLAttr(String)
-
encodeForJSString
public String encodeForJSString(String source)
Description copied from interface:XSSAPIEncodes a source string for writing to JavaScript string content. DO NOT USE FOR WRITING TO ARBITRARY JAVASCRIPT; YOU MUST USE A VALIDATOR FOR THAT. (Encoding only ensures that the source material cannot break out of its context.)- Specified by:
encodeForJSStringin interfaceXSSAPI- Parameters:
source- the input to encode- Returns:
- an encoded version of the source
- See Also:
XSSAPI.encodeForJSString(String)
-
encodeForCSSString
public String encodeForCSSString(String source)
Description copied from interface:XSSAPIEncodes a source string for writing to CSS string content. DO NOT USE FOR WRITING OUT ARBITRARY CSS TOKENS; YOU MUST USE A VALIDATOR FOR THAT! (Encoding only ensures the source string cannot break out of its context.)- Specified by:
encodeForCSSStringin interfaceXSSAPI- Parameters:
source- the input to encode- Returns:
- an encoded version of the source
- See Also:
XSSAPI.encodeForCSSString(String)
-
filterHTML
@NotNull public @NotNull String filterHTML(String source)
Description copied from interface:XSSAPIFilters potentially user-contributed HTML to meet the AntiSamy policy rules currently in effect for HTML output (see the XSSFilter service for details).- Specified by:
filterHTMLin interfaceXSSAPI- Parameters:
source- a string containing the source HTML- Returns:
- a string containing the sanitized HTML which may be an empty string if
sourceisnullor empty - See Also:
XSSAPI.filterHTML(String)
-
-