Top Banner
CLICKJACKING Security Nightmare
16

Clickjacking Attack

Jan 22, 2015

Download

Technology

Tùng Hà Sơn

Seminar
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Clickjacking Attack

CLICKJACKINGSecurity Nightmare

Page 2: Clickjacking Attack

Jeremiah Grossman (Whitehat Security)

Robert Hansen(SecTheory)

2008

Page 3: Clickjacking Attack

also known as a "UI redress attack"

…is a malicious technique of tricking a web user…

…into clicking on something different… from what the user perceives they are clicking on

Page 4: Clickjacking Attack

12 cases

+ Browser+ Plug-in+ Website

NOT ALL

Page 5: Clickjacking Attack
Page 6: Clickjacking Attack
Page 7: Clickjacking Attack

<iframe>opacity & z-index

Page 8: Clickjacking Attack

My page (malicious page)w3schools.com

<iframe src=http://www.w3schools.com></iframe>

Page 9: Clickjacking Attack

opacity: 1;z-index: 0;

Page 10: Clickjacking Attack

opacity: 0.5;z-index: 1;

Page 11: Clickjacking Attack
Page 12: Clickjacking Attack

Server side

• X-Frame-Options

• Framebuster

Client side

• No-Script

Page 13: Clickjacking Attack

Header append X-Frame-Options “DENY”

Page 14: Clickjacking Attack

Framebuster

Page 15: Clickjacking Attack

No-Scripts add-on

Page 16: Clickjacking Attack