Here’s a fun way to waste an afternoon:
- You have a user flow that involves reading user docs: some gDocs, some YouTube videos, and some UI practice links of your own.
- Opening these in a new tab is annoying, right?
- So you move them into modals using
iframe
s - Everything works! ??
- Then, you give it to QA…
- 2 out of 8 links don’t open for them.
- O.o
Every link opens a modal with an iframe. That part works. Two of the links – a YouTube video and a UI practice widget – never load.
You think it might be a slowness issue because you wait a few seconds and there’s no loading indicator. So you ask them to wait… doesn’t help. QA waits for many minutes but the two iframe
s stay blank.
o.O
You investigate. It still works for you. But QA is using Windows.
You find a Windows machine, do the Windows 10 forced update dance, and download the latest Chrome. It’s not a computer you use very often. The touchpad feels funny.
The two iframe
s, they don’t load. Wut.
The console sheds a clue: Refused to display because it set X-Frame-Options
to SAMEORIGIN
.
What the hell is X-Frame-Options? Why does Google only return results and StackOverflow questions from 2010, 2012, and 2013. Most of them still in PHP! Why have I not heard of this!?
X-Frame-Options: SAMEORIGIN
is an HTTP header that guards websites against clickjacking attacks. It tells browsers, “Yo, don’t open this page in an iframe”.
YouTube sets the header for URLs that aren’t embed
links, which explains the single YT link that didn’t work in my case. I was using embed
links for all but one of them. ?
And our own practice-the-interface link?
Rails 4 sets X-Frame-Options: SAMEORIGIN
for everything as a default security measure. I just never noticed before.
At least it was easy to fix – don’t send the header. :D
But why did it work on my computer?
At first, I thought maybe it’s because Chrome Mac and Chrome Windows behave differently. I tried on a coworker’s machine, and it didn’t work. It stopped the iframe
s like it’s supposed to.
Then I thought, “Maybe it’s because I’m on localhost.” Nope, wasn’t that.
Maybe it figures out swizec.ngrok.io
points to my local machine? Wait… the YouTube link worked, so it can’t be that.
…Why doesn’t my computer protect me from clickjacking? This is not ideal…
But hey, at least I know about X-Frame-Options now. That was fun. ?
Learned something new?
Want to become a high value JavaScript expert?
Here's how it works 👇
Leave your email and I'll send you an Interactive Modern JavaScript Cheatsheet 📖right away. After that you'll get thoughtfully written emails every week about React, JavaScript, and your career. Lessons learned over my 20 years in the industry working with companies ranging from tiny startups to Fortune5 behemoths.
Start with an interactive cheatsheet 📖
Then get thoughtful letters 💌 on mindsets, tactics, and technical skills for your career.
"Man, love your simple writing! Yours is the only email I open from marketers and only blog that I give a fuck to read & scroll till the end. And wow always take away lessons with me. Inspiring! And very relatable. 👌"
Have a burning question that you think I can answer? I don't have all of the answers, but I have some! Hit me up on twitter or book a 30min ama for in-depth help.
Ready to Stop copy pasting D3 examples and create data visualizations of your own? Learn how to build scalable dataviz components your whole team can understand with React for Data Visualization
Curious about Serverless and the modern backend? Check out Serverless Handbook, modern backend for the frontend engineer.
Ready to learn how it all fits together and build a modern webapp from scratch? Learn how to launch a webapp and make your first 💰 on the side with ServerlessReact.Dev
Want to brush up on your modern JavaScript syntax? Check out my interactive cheatsheet: es6cheatsheet.com
By the way, just in case no one has told you it yet today: I love and appreciate you for who you are ❤️