ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/security/Escape.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/security/Escape.java
Status
scanned
Type
file
Name
Escape.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
5118 (5.0 KB)
MD5
836062c6ce9916aa431b430bd429273d
SHA1
b8bf132e6b1522c4ce67422fd3866045ebe423b0
SHA256
35670e46ab25e93d1fb3756496915ab8cd93583800077f3d7849f1d838ea5767
SHA512

      
    
SHA1_git
b6feffbeb18fb63f19830eacc41c4c85283c4852
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
Escape.java | 5.0 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tomcat.util.security; /** * Provides utility methods to escape content for different contexts. It is critical that the escaping used is correct * for the context in which the data is to be used. */ public class Escape { private Escape() { // Hide default constructor for this utility class } /** * Escape content for use in HTML. This escaping is suitable for the following uses: * <ul> * <li>Element content when the escaped data will be placed directly inside tags such as &lt;p&gt;, &lt;td&gt; * etc.</li> * <li>Attribute values when the attribute value is quoted with &quot; or &#x27;.</li> * </ul> * * @param content The content to escape * * @return The escaped content or {@code null} if the content was {@code null} */ public static String htmlElementContent(String content) { if (content == null) { return null; } StringBuilder sb = new StringBuilder(); for (int i = 0; i < content.length(); i++) { char c = content.charAt(i); if (c == '<') { sb.append("&lt;"); } else if (c == '>') { sb.append("&gt;"); } else if (c == '\'') { sb.append("&#39;"); } else if (c == '&') { sb.append("&amp;"); } else if (c == '"') { sb.append("&quot;"); } else if (c == '/') { sb.append("&#47;"); } else { sb.append(c); } } return (sb.length() > content.length()) ? sb.toString() : content; } /** * Convert the object to a string via {@link Object#toString()} and HTML escape the resulting string for use in HTML * content. * * @param obj The object to convert to String and then escape * * @return The escaped content or <code>&quot;?&quot;</code> if obj is {@code null} */ public static String htmlElementContent(Object obj) { if (obj == null) { return "?"; } return htmlElementContent(obj.toString()); } /** * Escape content for use in XML. * * @param content The content to escape * * @return The escaped content or {@code null} if the content was {@code null} */ public static String xml(String content) { return xml(null, content); } /** * Escape content for use in XML. * * @param ifNull The value to return if content is {@code null} * @param content The content to escape * * @return The escaped content or the value of {@code ifNull} if the content was {@code null} */ public static String xml(String ifNull, String content) { return xml(ifNull, false, content); } /** * Escape content for use in XML. * * @param ifNull The value to return if content is {@code null} * @param escapeCRLF Should CR and LF also be escaped? * @param content The content to escape * * @return The escaped content or the value of ifNull if the content was {@code null} */ public static String xml(String ifNull, boolean escapeCRLF, String content) { if (content == null) { return ifNull; } StringBuilder sb = new StringBuilder(); for (int i = 0; i < content.length(); i++) { char c = content.charAt(i); if (c == '<') { sb.append("&lt;"); } else if (c == '>') { sb.append("&gt;"); } else if (c == '\'') { sb.append("&apos;"); } else if (c == '&') { sb.append("&amp;"); } else if (c == '"') { sb.append("&quot;"); } else if (escapeCRLF && c == ' ') { sb.append("&#13;"); } else if (escapeCRLF && c == ' ') { sb.append("&#10;"); } else { sb.append(c); } } return (sb.length() > content.length()) ? sb.toString() : content; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
20.99
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9