From 9a8ae5baef982c7da1ee2d763bba1e48b621783b Mon Sep 17 00:00:00 2001 From: benshmuely Date: Thu, 8 Jul 2021 16:06:11 +0300 Subject: [PATCH] readme cr --- README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 86bb4ed..e7dcc77 100644 --- a/README.md +++ b/README.md @@ -3,26 +3,24 @@ CureKit - WhiteSource Cure Encoding Package [![Language](https://img.shields.io/badge/language-Java-pink)](https://travis-ci.org/OWASP/owasp-java-encoder) [![Build Status](https://travis-ci.org/OWASP/owasp-java-encoder.svg?branch=main)](https://travis-ci.org/OWASP/owasp-java-encoder) [![License](https://img.shields.io/badge/license-Apache%202.0-blue)](https://www.apache.org/licenses/LICENSE-2.0.html) +CureKit is mostly used by the WhiteSource Cure self-fixing product. + WhiteSource Cure is an innovative solution that automatically generates remediation suggestions for vulnerabilities identified by detection tools in proprietary code. The remediation suggestions are presented on the vulnerable code itself and can be used as-is in your IDE. CureKit contains encoders and other utilities, critical to the Self-Healing process suggested by WhiteSource Cure. -The sanitization methods offered in CureKit offer solutions for security vulnerabilities in your code, such as +The sanitization methods offered in CureKit offer solutions for security vulnerabilities in your code, such as Cross-Site Scripting, Path Traversal, Os Command Injection and more. -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. - Start using the CureKit Sanitizers ----------------------------------- -You can download a JAR from [Maven Central](https://search.maven.org/#search|ga|1|g%3A%22org.owasp.encoder%22%20a%3A%22encoder%22). +You can download a JAR from [Maven Central](https://search.maven.org/artifact/io.whitesource/curekit/1.0.0/jar). The jar is also available in Maven: ```xml - io.whitesource.cure + io.whitesource curekit 1.0.0 @@ -38,6 +36,6 @@ Example usage: ```java PrintWriter out = ....; - out.println(""); + out.println(""); ```