commit | 068afa52e64ff6eea998294ab034428d5343ba99 | [log] [tgz] |
---|---|---|
author | Andrew Vuong <[email protected]> | Mon Apr 03 22:07:18 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Mon Apr 03 22:07:18 2023 +0000 |
tree | dffefd0374f7ed3358f3a252c2e2aafba60b76be | |
parent | 92325591a0d1559a0a3e470be3252b49c6f851db [diff] | |
parent | 18453a543115a2f567acc0a8bee8e4b17ecb7ade [diff] |
[automerger skipped] [automerged blank] Add OwaspJavaEncoderTestCases and TEST_MAPPING 2p: 616fc402e2 am: b6d8419060 -s ours am: 18453a5431 -s ours am skip reason: Merged-In Ie63b019dde762257df5c1c9eefbd471d67808432 with SHA-1 d86fa4e886 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/owasp/java-encoder/+/22426435 Change-Id: I66a8cf11794ab92a7fbae9fda50ce8e3fc83a00b Signed-off-by: Automerger Merge Worker <[email protected]>
Contextual Output Encoding is a computer programming technique necessary to stop Cross-Site Scripting. This project is a Java 1.5+ simple-to-use drop-in high-performance encoder class with little baggage.
For more detailed documentation on the OWASP Javca Encoder please visit https://owasp.org/www-project-java-encoder/.
You can download a JAR from Maven Central.
JSP tags and EL functions are available in the encoder-jsp, also available in Central.
The jars are also available in Maven:
<dependency> <groupId>org.owasp.encoder</groupId> <artifactId>encoder</artifactId> <version>1.2.3</version> </dependency> <dependency> <groupId>org.owasp.encoder</groupId> <artifactId>encoder-jsp</artifactId> <version>1.2.3</version> </dependency>
The OWASP Java Encoder library is intended for quick contextual encoding with very little overhead, either in performance or usage. To get started, simply add the encoder-1.2.3.jar, import org.owasp.encoder.Encode and start using.
Example usage:
PrintWriter out = ....; out.println("<textarea>"+Encode.forHtml(userData)+"</textarea>");
Please look at the javadoc for Encode to see the variety of contexts for which you can encode.
Happy Encoding!
The team is happy to announce that version 1.2.3 has been released!
The team is happy to announce that version 1.2.2 has been released!
The team is happy to announce that version 1.2.1 has been released!
OWASP Java Encoder has been moved to GitHub. Version 1.2 was also released!
Please visit https://www.owasp.org/index.php/OWASP_Java_Encoder_Project#tab=Use_the_Java_Encoder_Project to see detailed documentation and examples on each API use!
We're happy to announce that version 1.1.1 has been released. Along with a important bug fix, we added ESAPI integration to replace the legacy ESAPI encoders with the OWASP Java Encoder.
We're happy to announce that version 1.1 has been released. Along with a few minor encoding enhancements, we improved performance, and added a JSP tag and function library.