All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.esapi.codecs.CSSCodec Maven / Gradle / Ivy

/**
 * OWASP Enterprise Security API (ESAPI)
 *
 * This file is part of the Open Web Application Security Project (OWASP) Enterprise Security API
 * (ESAPI) project. For details, please see http://www.owasp.org/index.php/ESAPI.
 *
 * Copyright (c) 2007 - The OWASP Foundation
 *
 * The ESAPI is published by OWASP under the BSD license. You should read and accept the LICENSE
 * before you use, modify, and/or redistribute this software.
 *
 * @author Jeff Williams Aspect Security
 * @created 2007
 */
package org.owasp.esapi.codecs;

import java.util.regex.Pattern;

import org.owasp.esapi.codecs.ref.EncodingPatternPreservation;

/**
 * Implementation of the Codec interface for backslash encoding used in CSS.
 *
 * @author Jeff Williams (jeff.williams .at. aspectsecurity.com) Aspect Security
 * @since June 1, 2007
 * @see org.owasp.esapi.Encoder
 */
public class CSSCodec extends AbstractCharacterCodec
{
    private static final Character REPLACEMENT = '\ufffd';
    //rgb (###,###,###) OR rgb(###%,###%,###%)
    //([rR][gG][bB])\s*\(\s*\d{1,3}\s*(\%)?\s*,\s*\d{1,3}\s*(\%)?\s*,\s*\d{1,3}\s*(\%)?\s*\)
    private static final String RGB_TRPLT = "([rR][gG][bB])\\s*\\(\\s*\\d{1,3}\\s*(\\%)?\\s*,\\s*\\d{1,3}\\s*(\\%)?\\s*,\\s*\\d{1,3}\\s*(\\%)?\\s*\\)";
    private static final Pattern RGB_TRPLT_PATTERN = Pattern.compile(RGB_TRPLT);

    @Override
    public String encode(char[] immune, String input) {
         EncodingPatternPreservation tripletCheck = new EncodingPatternPreservation(RGB_TRPLT_PATTERN);

         String inputChk = tripletCheck.captureAndReplaceMatches(input);

         String result = super.encode(immune, inputChk);

         return tripletCheck.restoreOriginalContent(result);
    }
    /**
     * {@inheritDoc}
     *
     * Returns backslash encoded character.
     *
     * @param immune
     */
    public String encodeCharacter(char[] immune, Character c) {
        // check for immune characters
        if ( containsCharacter(c, immune ) ) {
            return ""+c;
        }

        // check for alphanumeric characters
        String hex = super.getHexForNonAlphanumeric(c);
        if ( hex == null ) {
            return ""+c;
        }

        // return the hex and end in whitespace to terminate
        return "\\" + hex + " ";
    }


    /**
     * {@inheritDoc}
     *
     * Returns the decoded version of the character starting at index,
     * or null if no decoding is possible.
     */
    @SuppressWarnings("fallthrough")
    public Character decodeCharacter(PushbackSequence input)
    {
        input.mark();
        Character first = input.next();
        if (first == null || first != '\\')
        {
            input.reset();
            return null;
        }

        Character second = input.next();
        if (second == null) {
            input.reset();
            return null;
        }

        /* From css 2.1 spec:
         * http://www.w3.org/TR/CSS21/syndata.html#characters
         *
         * First, inside a string, a backslash followed by a
         * newline is ignored (i.e., the string is deemed not
         * to contain either the backslash or the newline).
         *
         * Second, it cancels the meaning of special CSS
         * characters. Except within CSS comments, any character
         * (except a hexadecimal digit, linefeed, carriage return,
         * or form feed) can be escaped with a backslash to
         * remove its special meaning. For example, "\"" is a string
         * consisting of one double quote. Style sheet
         * preprocessors must not remove these backslashes
         * from a style sheet since that would change the style
         * sheet's meaning.
         *
         * Third, backslash escapes allow authors to refer to
         * characters they cannot easily put in a document. In
         * this case, the backslash is followed by at most six
         * hexadecimal digits (0..9A..F), which stand for the ISO
         * 10646 ([ISO10646]) character with that number, which
         * must not be zero. (It is undefined in CSS 2.1 what
         * happens if a style sheet does contain a character with
         * Unicode codepoint zero.) If a character in the range
         * [0-9a-fA-F] follows the hexadecimal number, the end
         * of the number needs to be made clear. There are two
         * ways to do that:
         *
         *    1. with a space (or other white space character):
         *    "\26 B" ("&B"). In this case, user agents should
         *    treat a "CR/LF" pair (U+000D/U+000A) as a single
         *    white space character.
         *
         *    2. by providing exactly 6 hexadecimal digits:
         *    "\000026B" ("&B")
         *
         * In fact, these two methods may be combined. Only one
         * white space character is ignored after a hexadecimal
         * escape. Note that this means that a "real" space
         * after the escape sequence must itself either be
         * escaped or doubled.
         *
         * If the number is outside the range allowed by Unicode
         * (e.g., "\110000" is above the maximum 10FFFF allowed in
         * current Unicode), the UA may replace the escape with
         * the "replacement character" (U+FFFD). If the character
         * is to be displayed, the UA should show a visible
         * symbol, such as a "missing character" glyph (cf. 15.2,
         * point 5).
         */

        switch(second)
        {    // special whitespace cases. I assume they mean
            // for all of these to qualify as a "new
            // line." Otherwise there is no specification
            // of what to do for \f
            case '\r':
                if(input.peek('\n'))
                    input.next();
                // fall through
            case '\n':  // Intentional fall through
            case '\f':  // Intentional fall through
                // bs followed by new line replaced by nothing
            case '\u0000':    // skip NUL for now too
                return decodeCharacter(input);
        }

        if (!PushbackString.isHexDigit(second))
        {    // non hex digit
            return second;
        }

        // Search for up to 6 hex digits following until a space
        StringBuilder sb = new StringBuilder();
        sb.append(second);
        for (int i = 0; i < 5; i++)
        {
            Character c = input.next();
            if(c == null || Character.isWhitespace(c))
                break;
            if(PushbackString.isHexDigit(c))
                sb.append(c);
            else
            {
                input.pushback(c);
                break;
            }
        }
        try
        {
            // parse the hex digit and create a character
            int i = Integer.parseInt(sb.toString(), 16);

            if (Character.isValidCodePoint(i))
                return (char)i;
            return REPLACEMENT;
        }
        catch (NumberFormatException e)
        {
            throw new IllegalStateException("Received a NumberFormateException parsing a string verified to be hex", e);
            }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy