keycloak-scim/server_admin/topics/threat/clickjacking.adoc

20 lines
1.2 KiB
Text
Raw Normal View History

2016-05-31 22:00:59 +00:00
=== Clickjacking
Clickjacking is a technique of tricking users into clicking on a user interface element different from what users perceive. A malicious site loads the target site in a transparent iFrame, overlaid on top of a set of dummy buttons placed directly under important buttons on the target site. When a user clicks a visible button, they are clicking a button on the hidden page. An attacker can steal a user's authentication credentials and access their resources by using this method.
2016-05-31 22:00:59 +00:00
2017-08-28 12:50:14 +00:00
By default, every response by {project_name} sets some specific browser headers that can prevent this from happening.
2021-05-27 12:29:27 +00:00
Specifically, it sets https://datatracker.ietf.org/doc/html/rfc7034[X-FRAME_OPTIONS] and http://www.w3.org/TR/CSP/[Content-Security-Policy].
You should take a look at the definition of both of these headers as there is a lot of fine-grain browser access you can control.
2016-05-31 22:00:59 +00:00
.Procedure
In the Admin Console, you can specify the values of the X-FRAME_OPTIONS and Content-Security-Policy headers.
2016-05-31 22:00:59 +00:00
. Click the *Realm Settings* menu item.
. Click the *Security Defenses* tab.
+
.Security Defenses
image:{project_images}/security-headers.png[Security Defences]
2016-05-31 22:00:59 +00:00
By default, {project_name} only sets up a _same-origin_ policy for iframes.