XSLT (Extensible Stylesheet Language Transformations) is a language for transforming XML +documents into other XML documents or other formats. Processing of unvalidated XSLT stylesheet can +let attacker to read arbitrary files from the filesystem or to execute arbitrary code.
+The general recommendation is to not process untrusted XSLT stylesheets. If user provided +stylesheets must be processed, enable the secure processing mode.
+In the following examples, the code accepts an XSLT stylesheet from the user and processes it. +
+ +In the first example, the user provided XSLT stylesheet is parsed and processed.
+ +In the second example, secure processing mode is enabled.
+ +