Class SecureEncoder

SecureEncoder contains many methods for manipulating untrusted data Strings into RFC-Compliant Strings for a given context by encoding “bad” data into the proper format.

Constructor Summary 

This class does not have a constructor, so you cannot create it directly.

Method Summary 

MethodDescription
static forHtmlContent(String)

Encodes a given input for use in a general HTML context.

static forHtmlInDoubleQuoteAttribute(String)

Encodes a given input for use in an HTML Attribute guarded by a double quote.

static forHtmlInSingleQuoteAttribute(String)

Encodes a given input for use in an HTML Attribute guarded by a single quote.

static forHtmlUnquotedAttribute(String)

Encodes a given input for use in an HTML Attribute left unguarded.

static forJSONValue(String)

Encodes a given input for use in a JSON Object Value to prevent escaping into a trusted context.

static forJavaScriptInAttribute(String)

Encodes a given input for use in JavaScript inside an HTML attribute.

static forJavaScriptInBlock(String)

Encodes a given input for use in JavaScript inside an HTML block.

static forJavaScriptInHTML(String)

Encodes a given input for use in JavaScript inside an HTML context.

static forJavaScriptInSource(String)

Encodes a given input for use in JavaScript inside a JavaScript source file.

static forUriComponent(String)

Encodes a given input for use as a component of a URI.

static forUriComponentStrict(String)

Encodes a given input for use as a component of a URI.

static forXmlCommentContent(String)

Encodes a given input for use in an XML comments.

static forXmlContent(String)

Encodes a given input for use in a general XML context.

static forXmlInDoubleQuoteAttribute(String)

Encodes a given input for use in an XML attribute guarded by a double quote.

static forXmlInSingleQuoteAttribute(String)

Encodes a given input for use in an XML attribute guarded by a single quote.

Methods inherited from class Object 

assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values

Method Details 

forHtmlContent(String) 

static forHtmlContent(input: String): String

Encodes a given input for use in a general HTML context. E.g. text content and text attributes. This method takes the UNION of allowed characters between the two context, so may be more imprecise that the more specific contexts. Generally, this method is preferred unless you specifically understand the context in which untrusted data will be output.

Example Usage:

1<div>${SecureEncoder.forHtmlContent(unsafeData)}</div>
2
3<input value="${SecureEncoder.forHtmlContent(unsafeData)}" />

Flow:

  • Allow AlphaNumerics and some Special characters
  • Replace Illegal Control Characters (Below 0x1F or between 0x7F and 0x9F) with &#xfffd;, the Unicode Replacement Character
  • Replace special HTML characters with their HTML Entity equivalents

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forHtmlInDoubleQuoteAttribute(String) 

static forHtmlInDoubleQuoteAttribute(input: String): String

Encodes a given input for use in an HTML Attribute guarded by a double quote. This method is preferred if you understand exactly how the output of this will be used in the HTML document.

Example Usage:

1<div id="${SecureEncoder.forHtmlInDoubleQuoteAttribute(unsafeData)}"></div>

Flow:

  • Allow AlphaNumerics and some Special characters
  • Replace Illegal Control Characters (Below 0x1F or between 0x7F and 0x9F) with &#xfffd;, the Unicode Replacement Character
  • Replace special HTML characters with their HTML Entity equivalents

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forHtmlInSingleQuoteAttribute(String) 

static forHtmlInSingleQuoteAttribute(input: String): String

Encodes a given input for use in an HTML Attribute guarded by a single quote. This method is preferred if you understand exactly how the output of this will be used in the HTML document.

Example Usage:

1<div id='${SecureEncoder.forHtmlInSingleQuoteAttribute(unsafeData)}'></div>

Flow:

  • Allow AlphaNumerics and some Special characters
  • Replace Illegal Control Characters (Below 0x1F or between 0x7F and 0x9F) with &#xfffd;, the Unicode Replacement Character
  • Replace special HTML characters with their HTML Entity equivalents

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forHtmlUnquotedAttribute(String) 

static forHtmlUnquotedAttribute(input: String): String

Encodes a given input for use in an HTML Attribute left unguarded. This method is preferred if you understand exactly how the output of this will be used in the HTML document.

Example Usage:

1<div id=${SecureEncoder.forHtmlUnquotedAttribute(unsafeData)}></div>

Flow:

  • Allow AlphaNumerics and some Special characters
  • Replace Illegal Control Characters (Below 0x1F or between 0x7F and 0x9F) with &#xfffd;, the Unicode Replacement Character
  • Replace special HTML characters with their HTML Entity equivalents

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forJSONValue(String) 

static forJSONValue(input: String): String

Encodes a given input for use in a JSON Object Value to prevent escaping into a trusted context.

Example Usage:

1var json = {"trusted_data" : SecureEncoder.forJSONValue(unsafeData)};
2return JSON.stringify(json);

Flow:

  • Allow AlphaNumerics
  • Slash escape certain illegal characters
  • Replace all other characters with their Hex Encoded equivalents prepended with \u

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forJavaScriptInAttribute(String) 

static forJavaScriptInAttribute(input: String): String

Encodes a given input for use in JavaScript inside an HTML attribute. This method is preferred if you understand exactly how the output of the will be used in the page

Example Usage:

1<button onclick="alert('${SecureEncoder.forJavaScriptInAttribute(unsafeData)}');">

Flow:

  • Allow AlphaNumerics and some Special characters
  • Slash escape certain illegal characters
  • Replace special JavaScript characters with their Hex Encoded equivalents prepended with \x for character codes under 128 and \u for character codes over 128

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forJavaScriptInBlock(String) 

static forJavaScriptInBlock(input: String): String

Encodes a given input for use in JavaScript inside an HTML block. This method is preferred if you understand exactly how the output of the will be used in the page

Example Usage:

1<script type="text/javascript">
2    var data = "${SecureEncoder.forJavaScriptInBlock(unsafeData)}";
3</script>

Flow:

  • Allow AlphaNumerics and some Special characters
  • Slash escape certain illegal characters
  • Replace special JavaScript characters with their Hex Encoded equivalents prepended with \x for character codes under 128 and \u for character codes over 128

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forJavaScriptInHTML(String) 

static forJavaScriptInHTML(input: String): String

Encodes a given input for use in JavaScript inside an HTML context. This method takes the UNION of allowed characters among the other contexts, so may be more imprecise that the more specific contexts. Generally, this method is preferred unless you specifically understand the context in which untrusted data will be output.

Example Usage:

1<script type="text/javascript">
2    var data = "${SecureEncoder.forJavaScriptInHTML(unsafeData)}";
3</script>
4
5<button onclick="alert('${SecureEncoder.forJavaScriptInHTML(unsafeData)}');">

Flow:

  • Allow AlphaNumerics and some Special characters
  • Slash escape certain illegal characters
  • Replace special JavaScript characters with their Hex Encoded equivalents prepended with \x for character codes under 128 and \u for character codes over 128

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forJavaScriptInSource(String) 

static forJavaScriptInSource(input: String): String

Encodes a given input for use in JavaScript inside a JavaScript source file. This method is preferred if you understand exactly how the output of the will be used in the page

Example Usage:

1<...inside foobar.js...>
2var data = "${SecureEncoder.forJavaScriptInSource(unsafeData)}";

Flow:

  • Allow AlphaNumerics and some Special characters
  • Slash escape certain illegal characters
  • Replace special JavaScript characters with their Hex Encoded equivalents prepended with \x for character codes under 128 and \u for character codes over 128

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forUriComponent(String) 

static forUriComponent(input: String): String

Encodes a given input for use as a component of a URI. This is equivalent to javascript's encodeURIComponent and does a realistic job of encoding.

Example Usage:

1<a href="http://host.com?value=${SecureEncoder.forUriComponent(unsafeData)}"/>

Allows:

1A-Z, a-z, 0-9, -, _, ., ~, !, *, ', (, )

Flow:

  • Allow AlphaNumerics and some Special characters
  • Percent encode all other characters

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forUriComponentStrict(String) 

static forUriComponentStrict(input: String): String

Encodes a given input for use as a component of a URI. This is a strict encoder and fully complies with RFC3986.

Example Usage:

1<a href="http://host.com?value=${SecureEncoder.forUriComponentStrict(unsafeData)}"/>

Allows:

1A-Z, a-z, 0-9, -, _, ., ~

Flow:

  • Allow AlphaNumerics and some Special characters
  • Percent encode all other characters

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forXmlCommentContent(String) 

static forXmlCommentContent(input: String): String

Encodes a given input for use in an XML comments. This method is preferred if you understand the context in which untrusted data will be output.

Note: It is recommended that you use a real parser, as this method can be misused, but is left here if a parser is unavailable to you

Example Usage:

1<!-- ${SecureEncoder.forXmlCommentContent(unsafeData)} -->

Flow:

  • Allow AlphaNumerics and some Special characters
  • Replace Illegal Control Characters (Below 0x1F or between 0x7F and 0x84 or between 0x86 and 0x9F or between 0xFDD0 and 0xFDDF) with an empty string
  • Replace special XML characters with their default XML Entity equivalents

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forXmlContent(String) 

static forXmlContent(input: String): String

Encodes a given input for use in a general XML context. E.g. text content and text attributes. This method takes the UNION of allowed characters between the other contexts, so may be more imprecise that the more specific contexts. Generally, this method is preferred unless you specifically understand the context in which untrusted data will be output.

Note: It is recommended that you use a real parser, as this method can be misused, but is left here if a parser is unavailable to you

Example Usage:

1<foo>${SecureEncoder.forXmlContent(unsafeData)}</foo>
2
3<bar attr="${SecureEncoder.forXmlContent(unsafeData)}"></bar>

Flow:

  • Allow AlphaNumerics and some Special characters
  • Replace Illegal Control Characters (Below 0x1F or between 0x7F and 0x84 or between 0x86 and 0x9F or between 0xFDD0 and 0xFDDF) with an empty string
  • Replace special XML characters with their default XML Entity equivalents

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forXmlInDoubleQuoteAttribute(String) 

static forXmlInDoubleQuoteAttribute(input: String): String

Encodes a given input for use in an XML attribute guarded by a double quote. This method is preferred if you understand the context in which untrusted data will be output.

Note: It is recommended that you use a real parser, as this method can be misused, but is left here if a parser is unavailable to you

Example Usage:

1<bar attr="${SecureEncoder.forXmlInDoubleQuoteAttribute(unsafeData)}"></bar>

Flow:

  • Allow AlphaNumerics and some Special characters
  • Replace Illegal Control Characters (Below 0x1F or between 0x7F and 0x84 or between 0x86 and 0x9F or between 0xFDD0 and 0xFDDF) with an empty string
  • Replace special XML characters with their default XML Entity equivalents

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

forXmlInSingleQuoteAttribute(String) 

static forXmlInSingleQuoteAttribute(input: String): String

Encodes a given input for use in an XML attribute guarded by a single quote. This method is preferred if you understand the context in which untrusted data will be output.

Note: It is recommended that you use a real parser, as this method can be misused, but is left here if a parser is unavailable to you

Example Usage:

1<bar attr='${SecureEncoder.forXmlInSingleQuoteAttribute(unsafeData)}'></bar>

Flow:

  • Allow AlphaNumerics and some Special characters
  • Replace Illegal Control Characters (Below 0x1F or between 0x7F and 0x84 or between 0x86 and 0x9F or between 0xFDD0 and 0xFDDF) with an empty string
  • Replace special XML characters with their default XML Entity equivalents

Parameters:

  • input - untrusted input to be encoded, if necessary

Returns:

  • a properly encoded string for the given input

DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!