WiFried: iOS 8 WiFi Issue
medium.com
WiFried: iOS 8 WiFi Issue
1–10 of 71 posts
Re: WiFried: iOS 8 WiFi Issue
#2Re: WiFried: iOS 8 WiFi Issue
#3Since upgrading to Yosemite, I've effectively had to stop using Airdrop, as it is now completely unreliable.
The sooner this is sorted, the better.
Re: WiFried: iOS 8 WiFi Issue
#41. Alice opens the AirDrop sheet.
2. Alice begins advertising her short "proximity"[2] hashes over BTLE.
3. Bob, continually scanning in the background, sees Alice and her hashes.
4. If Bob either a) has the "Everyone" setting enabled, or b) has a match to one of Alice's proximity hashes in his contacts, Bob connects to Alice over AWDL.
6. Bob starts a HTTP server.
7. Bob advertises a Bonjour service for his HTTP server.
8. Alice sends a discovery request.
9. If the request is valid, Bob sends a discovery response (including device model, name and icon).
Also to note, the author, Mario Ciabarra is the (co?)-founder of Rock Your Phone, the alternative to Cydia until the two merged in 2010[3].
[1] https://www.apple.com/privacy/docs/iOS_Security_Guide_Oct_20... (Page 23)
[2] Each device hashes every phone number and email in its address book with SHA256 after normalizing them. These hashes are referred to as full hashes. The "proximity" hashes are the first two bytes of the long hash. The full hashes are not broadcasted, but they are verified later over AWDL.
[3] http://www.tuaw.com/2010/09/11/alliance-of-the-jailbreakers-...
Re: WiFried: iOS 8 WiFi Issue
#5defaults write com.apple.NetworkBrowser DisableAirDrop -boolean YES
I don't have any Bluetooth-LE hardware to confirm whether this affects the newer-style AirDrop reported as the problem.
Re: WiFried: iOS 8 WiFi Issue
#6In any case, after browsing the apple support forums, I decided to try a few of the workarounds there and the only one which worked was by setting my 2.4ghz interface to b/g(legacy)-only mode.
It was an acceptable fix since all my other devices were on the 5ghz and I don't really have any other option(7.1.2 was great for me, shouldn't have upgraded).
Re: WiFried: iOS 8 WiFi Issue
#7Re: WiFried: iOS 8 WiFi Issue
#8Re: WiFried: iOS 8 WiFi Issue
#9I was curious as to how Apple implemented AirDrop discovery (particularly the Contacts Only feature) because their documentation is helpful, but vague[1]. I spent a night reverse engineering it, and this is the process: 1. Alice opens the AirDrop sheet. 2. Alice begins advertising her short "proximity"[2] hashes over BTLE. 3. Bob, continually scanning in the background, sees Alice and her hashes. 4. If Bob either a)…