Skip to content

grails-plugins/grails-x-frame-options-plugin

Repository files navigation

Grails X-Frame-Options Plugin

Filter to set HTTP response header X-Frame-Options to defend against ClickJacking.

More information about using X-Frame-Options for defending against clickjacking:

Installation

These instructions are targeted towards Grails 3 installations. For Grails 2.x refer to branch 1.x of the plugin.

Add a dependency to build.gradle:

...
dependencies {
    ...
    runtime ('org.grails.plugins:x-frame-options:1.1.2')
    ...
}
...

The default configuration installs a servlet filter for the URL pattern /* that adds a response header X-Frame-Options with the value DENY.

Configuration

The plugin is configured through grails-app/conf/application.yml.

We can limit the URL pattern the filter is applied to:

grails:
    plugin:
        xframeoptions:
            urlPattern: /path/*

We can also set multiple patterns:

grails:
    plugin:
        xframeoptions:
            urlPattern:
                - /path/*
                - /other/*

We can set different header values based on the configuration. To set the header value DENY we must use the following configuration:

grails:
    plugin:
        xframeoptions:
            deny: true

This is also the default value if no configuration is provided or no configuration options are set.

To set the header value SAMEORIGIN we must use the following configuration:

grails:
    plugin:
        xframeoptions:
            sameOrigin: true

To set the header value ALLOW-FROM with a URL we must use the following configuration:

grails:
    plugin:
        xframeoptions:
            allowFrom: http://www.mrhaki.com

To disable the filter we must use the following configuration option:

grails:
    plugin:
        xframeoptions:
            enabled: false

The filter is enabled by default and will use the DENY header value.

About

Servlet filter that adds an X-Frame-Options response header to defend against clickjacking.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy