Content extraction is one of the recently documented UI redressing vectors. It exploits Firefox vulnerability that allows to display any URL HTML source in an iframe like this:
Once attacker gets the page source dropped into his textarea, he may begin to extract contents (like session IDs, user names, anti csrf tokens etc.) and launch further attacks.
However, this way of using the vector requires significant effort from a user and is pretty difficult to exploit in real world situation (there's some clicking and dragging involved). Also, it will stop working once Mozilla disallows cross origin drag & dropping.
I've found a neat way to do cross-origin content extraction that might be more suitable for some classes of websites. Ladies and gentleman, let me present Fake Captcha:
Copying & pasting requires four steps:
Double click stops at word boundary, third click expands to whole paragraph (try this text). In the above example, you need three clicks to select the whole visible code. Why do we care?
So we display the source in a small frame, position it to only display a few characters, starting from line 7, column 19. Then we convince the user to select the whole line with tripple click - double click will stop at minus sign, so the user will probably do the third click to select all.
After selecting he copies, clicks the next field and pastes. Then we're done.
Pros:
Update: Latest NoScript (2.1.2+) contains code neutralizing fake captcha method. Yeat another great work of Giorgio Maone!
Update 2: Fake CAPTCHA technique spotted in the wild to extract Facebook CSRF tokens.
<iframe src="view-source:http://any-page-you.like/cookies-included">With social engineering attacker tricks user into selecting (usually invisible) page source and dragging it to attackers' controlled textarea. A simple demo is here:
Drag & drop other page source (cross-domain) |
However, this way of using the vector requires significant effort from a user and is pretty difficult to exploit in real world situation (there's some clicking and dragging involved). Also, it will stop working once Mozilla disallows cross origin drag & dropping.
I've found a neat way to do cross-origin content extraction that might be more suitable for some classes of websites. Ladies and gentleman, let me present Fake Captcha:
No more drag
The weak point of the 'classic' method for me was the dragging that was involved. In Firefox, once you drag something, it displays a shadow of the object at the cursor - and a whole HTML source being displayed for the user is really hard to hide. I decided to convince the user to copy & paste the source with his clipboard instead.Copying & pasting requires four steps:
- selecting the text to copy
- ctrl-c
- navigating to target element
- ctrl-v
So, when do you use a clipboard?
Well, I don't like typing. So everytime I'm forced to repeat my e-mail address in a form, I just copypaste it. I decided to go that way. What if we display longish captcha-like 'security code' for a user to retype? 16 characters or more? Some of them will skip this step altogether, some will retype, but most will select the text and copy/paste.How do you select?
You can select with your mouse. In Firefox, you can also select by double / tripple clicking. My assumption is that most of the users use the clicking method to select text.Double click stops at word boundary, third click expands to whole paragraph (try this text). In the above example, you need three clicks to select the whole visible code. Why do we care?
I'm framed!
Because the security code input field is just precisely positioned part of the view-source:d victim page. And by tripple clicking user selects the whole line from the page source!Demo
It's best to see the demo to understand what's going on. We want to extract the anti-CSRF token from the victim page cross domain. The token is in the page source, line 7:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>NDCP</title> <script type="text/javascript"> var csrf_token = '35fb6df6-2ab9-408b-abe3-769412a58e15'; </script> <style> body { background: url(nuke.jpg) left top repeat; color: white; font-family: Verdana, arial, sans-serif; } // and so on
So we display the source in a small frame, position it to only display a few characters, starting from line 7, column 19. Then we convince the user to select the whole line with tripple click - double click will stop at minus sign, so the user will probably do the third click to select all.
After selecting he copies, clicks the next field and pastes. Then we're done.
Details matter
See the source to appreciate all the small, but very important details, especially:- how to measure the font size used in view-source:
- what was view-source:view-source: used for
- how to position an iframe to line / column of HTML source
- how the input and frame was styled to look similar
How not to get owned?
- web developers - use X-Frame-Options header (js framebusting won't work here). Remember, once you allow your site to be framed, you're opening to a whole class of UI redressing attacks, most of the attacks are not even discovered yet, it's a new field of research. So if you don't use X-Frame-Options, better have a really good explanation.
- users - don't use Firefox or
look carefully on what you douse NoScript
Summary
There's a new 'fake captcha' method of using the content extraction UI redressing vector.Pros:
- does not require drag & dropping
- accounts for font-size differences
- more convincing for a user
- won't work if user uses mouse to select text (unless attacker is interested in only the visible part)
- requires a captcha like string in victim HTML source
- it's line / column position must be constant and known to attacker
- only one line of HTML source might be copied (but websites' HTML is often minimized to a single line)
Update: Latest NoScript (2.1.2+) contains code neutralizing fake captcha method. Yeat another great work of Giorgio Maone!
Update 2: Fake CAPTCHA technique spotted in the wild to extract Facebook CSRF tokens.
5 comments:
This is a brilliant post ! Paved way for many different attacks ! Kudos to Koto
I have learn some good stuff here. Definitely price bookmarking for revisiting. I surprise how a lot attempt you set to create any such great informative website.
Sepeda Motor Bebek Injeksi Kencang dan Irit Jupiter Z1
Brilliant work.
When I tried to read the token from 63rd line, it does not work. What could be the reason for that limitation ?
The problem is fixed after modifying the iframe height value in the outer.html. Thanks.
I was browsing Google chrome trying to figure out how I can pull up the incognito history on my Motorola X smart phone.. Someone recently used my phone without my permission unfortunately and lied about it, and now it's running really slow.. Any advice or step by step laymen's terms on how to pull it up? Would really appreciate it :-)
Post a Comment