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

com.netgrif.application.engine.configuration.properties.enumeration.XXSSProtection Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.4.0
Show newest version
package com.netgrif.application.engine.configuration.properties.enumeration;

/**
 * DISABLE - Disable
 *
 * DISABLE_XSS (0) - Disables XSS filtering.
 *
 * ENABLE (1) - Enables XSS filtering (usually default in browsers). If a cross-site scripting attack is detected, the browser will sanitize the page (remove the unsafe parts).
 *
 * ENABLE_MODE (1; mode=block) - Enables XSS filtering. Rather than sanitizing the page, the browser will prevent rendering of the page if an attack is detected.
 *
 * More Info
 */
public enum XXSSProtection {

    DISABLE,
    DISABLE_XSS,
    ENABLE,
    ENABLE_MODE


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy