Is it possible to get list of SSID's of networks around by using private API on iOS 7 Jailbroken device?
I know about MobileWiFi.framework that manages WiFi functionality on iOS. (It replaces the obsolete Apple80211 framework.)
Here is 4 years old answer how to use it: Accessing & Using the MobileWiFi.framework
I tried to use these methods on iOS 7, but have no luck.
In one of the comments of author of this solution I receive this answer:
scanNetworks
fails because that code is now 4 years old. As I describe in my answer, you have to use a new framework to get the equivalent functionality (and you have had to since at least iOS 5). If you are trying to do this with iOS 7, I would recommend posting a new question.
p.s.
It's not a duplicate of Get SSID's in range iOS 7 . I ask about Jailbreak method of these functionality.
UPD:
There is working code in the link above and in the creker's answer too. But it's needed to pass the sandbox restrictions. So, the right question is: Is there a way to do that with regular iOS app?