wifi万能钥匙会不会偷偷上传wifi无线密码

 2015-03-06
 171
本次测试版本号为3.2.3,首先通过可疑shell语句定位到疑问的问题代码:类名com.snda.wifilocating.f.ba

这段代码的作用是在有了root权限的情况下 将系统的wifi.conf拷贝出来到应用自己的目录,并赋予其全局可读写权限(其实这是个漏洞了...)。对其做cross-ref查找引用之后可以发现,该函数主要在两个地方被直接调用。一个是com.snda.wifilocating.e.av:


这是一个api接口,主要功能是用于用户注册了之后备份自己的ap密码,同时在

WpaConfUploadActivity直接调用、GetBackupActivity中间接调用。第一个Activity在分析的版本中已经被从AndroidManifest中删除,而第二个Activity则是用户备份私有wifi时的对应的界面。这证实了备份的时候密码确实会被上传,而且从下文来看这个密码是完全可逆的。不过在使用过程中,该应用并没有其他可疑的root行为操作。笔者打开了SuperSu的root执行监控,短暂的使用过程中也只发现了执行了上述的这一条命令。



0x01 Android系统Wifi连接API概述
Android系统通过WifiManager类来提供对Wifi的扫描、连接接口。应用在请求相应权限之后可以扫描、连接、断开无线等。在连接无线功能中,客户端基本上只要指定SSID,Pre-shared-key(即密码),就可以用代码的方式连接无线。连接一个WPA(2)无线典型代码如下,[backcolor=white !important][size=1em][backcolor=white !important]1
[backcolor=white !important]2
[backcolor=white !important]3
[backcolor=white !important]4
[backcolor=white !important]5
[backcolor=white !important]6
[backcolor=white !important]7
[backcolor=white !important]8
[backcolor=white !important]9
[backcolor=white !important]10
[backcolor=white !important]11
[backcolor=white !important]12
[backcolor=white !important]13
[backcolor=white !important]14
[backcolor=white !important]wifiConfiguration.SSID = "\"" + networkSSID + "\"";
[backcolor=white !important]wifiConfiguration.preSharedKey = "\"" + networkPass + "\"";
[backcolor=white !important]wifiConfiguration.hiddenSSID = true;
[backcolor=white !important]wifiConfiguration.status = WifiConfiguration.Status.ENABLED;
[backcolor=white !important]wifiConfiguration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
[backcolor=white !important]wifiConfiguration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
[backcolor=white !important]wifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
[backcolor=white !important]wifiConfiguration.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP);
[backcolor=white !important]wifiConfiguration.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP);
[backcolor=white !important]wifiConfiguration.allowedProtocols.set(WifiConfiguration.Protocol.RSN);
[backcolor=white !important]wifiConfiguration.allowedProtocols.set(WifiConfiguration.Protocol.WPA);

[backcolor=white !important]int res = wifiManager.addNetwork(wifiConfiguration);
[backcolor=white !important]Log.d(TAG, "### add Network returned " + res);



0x02 wifi万能钥匙是怎么连接上无线的,密码从哪里来?
这也是争议较大的地方,首先该应用肯定是有云端存储了很多密码,因为应用会引导用户备份自己的密码,但这些密码有没有被滥用我们在客户端就不得而知了。在2月底的这次测试中,笔者先私有备份了自己建立的测试无线(注意不是分享),然后使用另外一个手机安装该客户端测试,该客户端的API请求接口并没有返回这个测试的无线的密码。不过这也可能只是个例说明不了什么,还是建议各位自行测试,但注意测试前清除保存的无线并给测试无线设定一个弱密码以免真的泄露了自己的密码。

无线密码获取分析
回到正题,笔者通过代{过}{滤}理拦截到了该应用获取wifi密码的请求。应用发送目标的ssid,mac信息向云端做查询,获取到的密码到本地之后并不是明文的,而是一个AES加密。首先为了证明其在本地最终还是会以明文出现,先取了个巧,没有去逆这个算法(虽然逆下也不会很困难),而是直接hook了系统添加无线的代码(回忆上文里密码就在NetworkConfiguration.preSharedKey里)。部分HOOK代码:[backcolor=white !important][size=1em][backcolor=white !important]1
[backcolor=white !important]2
[backcolor=white !important]3
[backcolor=white !important]4
[backcolor=white !important]5
[backcolor=white !important]6
[backcolor=white !important]7
[backcolor=white !important]8
[backcolor=white !important]9
[backcolor=white !important]10
[backcolor=white !important]11
[backcolor=white !important]12
[backcolor=white !important]13
[backcolor=white !important]14
[backcolor=white !important]15
[backcolor=white !important]16
[backcolor=white !important]17
[backcolor=white !important]18
[backcolor=white !important]19
[backcolor=white !important]20
[backcolor=white !important]21
[backcolor=white !important]22
[backcolor=white !important]23
[backcolor=white !important]24
[backcolor=white !important]25
[backcolor=white !important]26
[backcolor=white !important]27
[backcolor=white !important]28
[backcolor=white !important]29
[backcolor=white !important]30
[backcolor=white !important]31
[backcolor=white !important]32
[backcolor=white !important]33
[backcolor=white !important]            Class wifimgr = XposedHelpers.findClass(
[backcolor=white !important]                    "android.net.wifi.WifiManager",
[backcolor=white !important]                    lpparam.classLoader);
[backcolor=white !important]            XposedBridge.hookAllMethods(wifimgr, "addNetwork",
[backcolor=white !important]                    new XC_MethodHook() {

[backcolor=white !important]                        @Override
[backcolor=white !important]                        protected void beforeHookedMethod(MethodHookParam param)
[backcolor=white !important]                                throws Throwable {
[backcolor=white !important]                            WifiConfiguration configuration = (WifiConfiguration) param.args[0];
[backcolor=white !important]                            if(configuration.preSharedKey != null)
[backcolor=white !important]                            {

[backcolor=white !important]                                Log.e("FUCKFUCK", "psk: "+configuration.preSharedKey);
[backcolor=white !important]                            }
[backcolor=white !important]                        }
[backcolor=white !important]                    });

[backcolor=white !important]            XposedBridge.hookAllMethods(wifimgr, "updateNetwork",
[backcolor=white !important]                    new XC_MethodHook() {

[backcolor=white !important]                        @Override
[backcolor=white !important]                        protected void beforeHookedMethod(MethodHookParam param)
[backcolor=white !important]                                throws Throwable {
[backcolor=white !important]                            WifiConfiguration configuration = (WifiConfiguration) param.args[0];
[backcolor=white !important]                            if(configuration.preSharedKey != null)
[backcolor=white !important]                            {

[backcolor=white !important]                                Log.e("FUCKFUCK", "psk: "+configuration.preSharedKey);
[backcolor=white !important]                            }
[backcolor=white !important]                        }
[backcolor=white !important]                    });
[backcolor=white !important]            }



这是一个万能钥匙上传wifi ssid以及mac以请求密码的截图:

响应截图:



密码以AES可逆加密的形式通过pwd这个json key传递了回来。同时,在其尝试通过这个密码连接目标无线的时候,本地hook模块也获取到了真实的明文密码:



个人备份分析
而个人备份模块,也就是直接会读取wifi.conf的模块,是通过findprivateap和saveprivateap这两个json api method进行,具体的http请求逻辑在com.snda.wifilocating.e.av中可以找到,这个类也基本上囊括了所有万能钥匙的api请求逻辑。备份时的请求:把整个wifi.conf全部上传了上去。

而恢复备份时,只是将密码从云端拖了下来。其他连接方式分析
除此之外,Wifi万能钥匙还自带了2000条的数据库记录在ap8.db中,记录了常见的弱密码。

例如

这些密码用在所谓的“深度连接”功能中,其实按代码逻辑来看就是一个wifi密码爆破,每次在字典中尝试10个密码。看下logcat就很明显。[backcolor=white !important][size=1em][backcolor=white !important]1
[backcolor=white !important]2
[backcolor=white !important]3
[backcolor=white !important]4
[backcolor=white !important]5
[backcolor=white !important]6
[backcolor=white !important]7
[backcolor=white !important]8
[backcolor=white !important]9
[backcolor=white !important]10
[backcolor=white !important]11
[backcolor=white !important]12
[backcolor=white !important]13
[backcolor=white !important]14
[backcolor=white !important]15
[backcolor=white !important]16
[backcolor=white !important]17
[backcolor=white !important]18
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: WPA: 4-Way Handshake failed - pre-shared key may be incorrect
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=1 ssid="aaaaaaaaa" auth_failures=2 duration=20
[backcolor=white !important]D/SupplicantStateTracker( 818): Failed to authenticate, disabling network 1
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-SSID-REENABLED id=1 ssid="aaaaaaaaa"
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: Trying to associate with 5c:a4:8a:4d:09:a0 (SSID='aaaaaaaaa' freq=2412 MHz)
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: Associated with 5c:a4:8a:4d:09:a0
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-DISCONNECTED bssid=5c:a4:8a:4d:09:a0 reason=23
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=1 ssid="aaaaaaaaa" auth_failures=1 duration=10
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: WPA: 4-Way Handshake failed - pre-shared key may be incorrect
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=1 ssid="aaaaaaaaa" auth_failures=2 duration=20
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-SSID-REENABLED id=1 ssid="aaaaaaaaa"
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: Trying to associate with 5e:aa:aa:aa:aa:aa (SSID='aaaaaaaaa' freq=2462 MHz)
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: Associated with 5e:aa:aa:aa:aa:aa
[backcolor=white !important]D/dalvikvm(13893): GC_CONCURRENT freed 356K, 4% free 18620K/19220K, paused 9ms+2ms, total 29ms
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-DISCONNECTED bssid=5e:aa:aa:aa:aa:aa reason=23
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=1 ssid="aaaaaaaaa" auth_failures=1 duration=10
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: WPA: 4-Way Handshake failed - pre-shared key may be incorrect
[backcolor=white !important]I/wpa_supplicant( 884): wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=1 ssid="aaaaaaaaa" auth_failures=2 duration=20



Wifi密码加解密分析
当然真正去逆向加密代码也不是很困难,简单的搜寻即可得到解密代码:(部分直接从反编译的代码中抠出,风格未做修饰)[backcolor=white !important][size=1em][backcolor=white !important]1
[backcolor=white !important]2
[backcolor=white !important]3
[backcolor=white !important]4
[backcolor=white !important]5
[backcolor=white !important]6
[backcolor=white !important]7
[backcolor=white !important]8
[backcolor=white !important]9
[backcolor=white !important]10
[backcolor=white !important]11
[backcolor=white !important]12
[backcolor=white !important]13
[backcolor=white !important]14
[backcolor=white !important]15
[backcolor=white !important]16
[backcolor=white !important]17
[backcolor=white !important]18
[backcolor=white !important]19
[backcolor=white !important]20
[backcolor=white !important]21
[backcolor=white !important]22
[backcolor=white !important]23
[backcolor=white !important]24
[backcolor=white !important]25
[backcolor=white !important]26
[backcolor=white !important]27
[backcolor=white !important]28
[backcolor=white !important]29
[backcolor=white !important]30
[backcolor=white !important]31
[backcolor=white !important]32
[backcolor=white !important]33
[backcolor=white !important]34
[backcolor=white !important]35
[backcolor=white !important]36
[backcolor=white !important]37
[backcolor=white !important]38
[backcolor=white !important]39
[backcolor=white !important]40
[backcolor=white !important]41
[backcolor=white !important]42
[backcolor=white !important]43
[backcolor=white !important]44
[backcolor=white !important]45
[backcolor=white !important]46
[backcolor=white !important]47
[backcolor=white !important]48
[backcolor=white !important]49
[backcolor=white !important]50
[backcolor=white !important]public class AESFun {

[backcolor=white !important]      String a =//略去;
[backcolor=white !important]      String b = //略去;
[backcolor=white !important]      String c = //略去;

[backcolor=white !important]      Cipher cipher;
[backcolor=white !important]      IvParameterSpec spec;
[backcolor=white !important]      SecretKeySpec secretKeySpec;
[backcolor=white !important]      void init() throws NoSuchAlgorithmException, NoSuchPaddingException {
[backcolor=white !important]            spec = new IvParameterSpec(b.getBytes());
[backcolor=white !important]            secretKeySpec = new SecretKeySpec(a.getBytes(), "AES");
[backcolor=white !important]            cipher = Cipher.getInstance("AES/CBC/NoPadding");
[backcolor=white !important]      }

[backcolor=white !important]      public final String b(String arg7) throws Exception {
[backcolor=white !important]        byte[] array_b1;
[backcolor=white !important]        byte[] array_b = null;
[backcolor=white !important]        int i = 2;
[backcolor=white !important]        String string = null;
[backcolor=white !important]        {
[backcolor=white !important]            try {
[backcolor=white !important]                this.cipher.init(2, secretKeySpec, spec);
[backcolor=white !important]                Cipher cipher = this.cipher;
[backcolor=white !important]                if(arg7 != null && arg7.length() >= i) {
[backcolor=white !important]                    int i1 = arg7.length() / 2;
[backcolor=white !important]                    array_b = new byte[i1];
[backcolor=white !important]                    int i2;
[backcolor=white !important]                    for(i2 = 0; i2 < i1; ++i2) {
[backcolor=white !important]                        String string1 = arg7.substring(i2 * 2, i2 * 2 + 2);
[backcolor=white !important]                        array_b[i2] = ((byte)Integer.parseInt(string1, 0x10));
[backcolor=white !important]                    }
[backcolor=white !important]                }

[backcolor=white !important]                array_b1 = cipher.doFinal(array_b);
[backcolor=white !important]            }
[backcolor=white !important]            catch(Exception exception) {
[backcolor=white !important]                StringBuilder stringBuilder = new StringBuilder("[decrypt] ");
[backcolor=white !important]                string = exception.getMessage();
[backcolor=white !important]                StringBuilder stringBuilder1 = stringBuilder.append(string);
[backcolor=white !important]                string = stringBuilder1.toString();
[backcolor=white !important]                exception.printStackTrace();
[backcolor=white !important]                throw new Exception(string);
[backcolor=white !important]            }

[backcolor=white !important]            string = new String(array_b1);
[backcolor=white !important]        }

[backcolor=white !important]        return string;
[backcolor=white !important]    }



将API请求中获取的16进制pwd字段代入解密程序,得到的结果是如下格式:[length][password][timestamp]的格式,如下图所示,中间就是目标无线明文密码。

此外接口请求中有一个sign字段是加签,事实上是把请求参数合并在一起与预置的key做了个md5,细节就不赘述了。这两个清楚了之后其实完全可以利用这个接口实现一个自己的Wifi钥匙了。0x03 总结
此版本的WiFi万能钥匙不会主动把root之后手机保存的无线密码发向云端但在做备份操作(安装时默认勾选自动备份)时会发送,当有足够的用户使用该应用时,云端就拥有了一个庞大的WiFi数据库,查询WiFi的密码时,应用会发送目标的ssid,mac信息向云端做查询,获取到的密码到本地之后并不是明文的,而是一个AES加密,本地解密后连接目标WiFi。同时内置了常见的2000条WiFi弱口令,在云端没有该WiFi密码的时候,可以尝试爆破目标的密码。


原文标题:wifi万能钥匙会不会偷偷上传wifi无线密码

最后修改时间:2015-03-06