May 31, 2019

安全应用程序审核 -- Lionmobi

安全应用程序审核 -- Lionmobi

由于Android生态系统对用户更加开放,因此你可以从许多来源下载和安装任何应用程序,而不仅仅是谷歌应用商店。但是,App开发人员和恶意软件作者也获得了同样的便利。安全问题始终是Android用户关心的一个重要话题,特别是对于中国用户。出于这个原因,市场上有很多针对Android发布的安全应用程序。在本系列中,我们将通过测试分析一些知名的安全移动应用程序,让非技术用户来了解它们真正的性能表现。让我们先从Play商店中一个非常受欢迎的应用程序开始:来自Lionmobi的Power Clean  -  Antivirus&Phone Cleaner App。

在谷歌应用商店,你可以看到几款来自Lionmobi公司的安全和工具类应用,我们测试分析了其中所有和安全相关的应用。但是在这篇文章中我们重点关注Power Clean这个应用,因为这个应用基本包含了其他几个应用的主要功能。对于同一功能在其他应用上的性能表现是类似的,其中的代码也有很多重复。

Power Clean自身拥有超过1亿下载量,从显示数据上看目前仍有超过250万活跃用户。除了此应用程序的流行程度之外,我们关注此应用程序的另一个原因是它具有非常多的安全和工具类功能,其中包括病毒/恶意软件扫描,wifi安全扫描,CPU降温,设备加速,内存/存储清理等。有些功能听起来很酷,对Android用户也很有帮助。但它的实际效果如何?让我们深入了解一下。

Alt

该应用程序的用户界面做的很专业,它在应用的上半部分显示一些设备状态,包括温度,内存,存储的使用率。功能框在下半部分显示。由于我们更关注安全功能,那就从防病毒部分开始吧。如果单击anti virus按钮,应用会显示一个类似雷达的动画显示扫描过程。在这个扫描过程中包括了Wi-Fi安全检测,病毒检测,和恶意软件检测:

Alt

对于Wifi安全检测,它声称可以检测DNS劫持,SSL劫持,ARP欺骗和获取WiFi加密方式。但是,从我们的测试来看,即使我们在搭建的钓鱼热点环境或ARP欺骗攻击中,这个功能的检测仍然给出安全的结果,并没有实际检测到相关的攻击。因此我们手工审核了应用的代码,并发现了一些非常有趣的结果:

public static int getEncryptionType() {  
        try {  
            WifiInfo connectionInfo = a.getConnectionInfo();  
            if (connectionInfo != null) {  
                String bssid = connectionInfo.getBSSID();  
                try {  
                    List scanResults = a.getScanResults();  
                    if (scanResults != null) {  
                        String str;  
                        for (int i = 0; i < scanResults.size(); i++) {  
                            ScanResult scanResult = (ScanResult) scanResults.get(i);  
                            if (scanResult.BSSID.equals(bssid)) {  
                                str = scanResult.capabilities;  
                                break;  
                            }  
                        }  
                        str = null;  
                        if (str != null) {  
                            if (str.contains("WPA2")) {  
                                return 3;  
                            }  
                            if (str.contains("WPA")) {  
                                return 2;  
                            }  
                            return str.contains("WEP") ? 1 : 0;  
                        }  
                    }  
                } catch (Exception e) {  
                    return -1;  
                }  
            }  
        } catch (Exception e2) {  
        }  
        return -1;  
    }

public static boolean checkDnsFake() {   
    return true;  
 } 
     
public static boolean checkArp() {  
        return false;  
}  
    
public static boolean checkHttpsHookFake() {  
        return false; 
}

似乎该应用只在函数getEncryptionType中,编写了真正的代码来获得WiFi加密类型,对于其他WiFi相关的安全检测,它只返回固定的结果。所以即使网络环境受到攻击时,它却仍然告诉你WiFi环境安全。

在WiFi扫描之后,应用程序将继续扫描病毒和恶意软件。为了测试恶意软件的检测率,我们从VirusTotal随机下载了50个恶意软件样本。这些样本被大多数反病毒厂商(AV)鉴定为恶意软件。由于Power Clean应用程序只能扫描已安装的应用程序,而不能对指定文件或文件夹进行扫描,因此我们需要在手机上安装所有测试样本。借助xargs和adb的帮助,我们在测试手机上安装了所有50个样本后,在下面的截图中我们可以看到手机上安装的部分应用:

Alt

从我们观察WiFi扫描功能的情况来看,我们对恶意软件扫描部分的检测率没有太大的期待。但是,考虑到我们下载的这些恶意样本大多数来自2018年,并且被大多数AV供应商对它们报毒,我们认为该应用应该至少能检测出大部分的样本。但结果仍旧令人失望:

Alt

除了在屏幕上成功显示广告之外,应用程序没有检测出任何样本并给予警告。至此我们从安全检测看到的情况是,Lionmobi Power Clean除了在界面上插播一下广告,实际上几乎没有任何保护你手机的实际功能。对于所有测试样本列表,你可以参考附录A。考虑到该应用并不是以安全为主要功能,因此我们将相同的50个样本测试另外一个Lionmobi App Power Security,其主要功能是移动安全。不出意料结果是一样的:

Alt

在测试并分析了该应用的安全性部分之后,我们还分析了它其他一些有趣的功能。例如,“设备降温” :

Alt

当你的手机CPU显示高温(如150F)的红色警告时,你可以单击“冷却”对设备进行降温,应用会播放一些动画效果,然后显示你的设备经过该功能降低了一些温度。但是,如果你真的查看了冷却逻辑的代码,你将看到以下代码片段:

private void b(boolean z) {  
    if (!isFinishing()) {  
        if (z) {  
            aaj.setLong("last_cooler_time", Long.valueOf(System.currentTimeMillis()));  
            int i = this.e - this.g;  
            if (i >= 45) {  
                i = 45 - ((int) ((Math.random() * 1.0d) + 1.0d));  
            }  
            aaj.setKeepTemperature(i);  
        }  
        uv.scheduleTaskOnUiThread(800, new Runnable() {  
            public void run() {  
                Intent createActivityStartIntent = aim.createActivityStartIntent(CoolerActivity.this, CoolerResultActivity.class);  
                createActivityStartIntent.putExtra("intent_data", Long.valueOf((long) CoolerActivity.this.g));  
                createActivityStartIntent.putExtra("back_to_main", CoolerActivity.this.shouldBackToMain());  
                CoolerActivity.this.startActivity(createActivityStartIntent);  
                CoolerActivity.this.onFinish(true);  
            }  
        });  
    }  
}  

它只是生成一些随机数来告诉你它冷却了多少度,而实际上什么也没做。它设备加速功能上,也是使用了一些随机数而已。

总之,我们在对Lionmobi Power Clean安全功能和一些工具类功能的测试中发现,该应用伪造了很多功能,其扫描病毒和恶意软件的功能虽然代码存在,但是并不具备实际有效的检测率,对手机没有没有实质的安全保护功能,基本不能防护常见的安全威胁。除此之外,它很多虚假的功能中都插入了大量的广告,严重影响用户体验。例如,当他们声称他们正在更新欺诈电话号码库时,除了在屏幕上显示一些广告之外,它实际的代码中什么也没做。 虽然声称自己是安全应用程序,实际上浪费了Android用户大量的计算存储空间。更糟糕的事情是,该应用可能误导用户已获得足够的安全防护,而使用户处于未知的风险之中,造成更严重的后果。

该文章中审核的所有Lionmobi应用均来自Google Play商店。

他们是:

Network Master Speed Test_v1.9.82 - 306030a2040861e0ce52e736cd396e05

Power Battery Battery Life Saver Health Test_v1.9.8.6 - 6736e8db37df6ad04dbf827b2c8b60ec

Power Clean Antivirus Phone Cleaner App_v2.9.9.64 - c06b7b8e78202ead80a2a1ec5ed1120f

Power Security Anti Virus Phone Cleaner_v2.1.6 - c9d069ff45397fdf7b6412093b59e80c

最后要感谢月落对所有样本的审核分析。

附录 A

https://www.virustotal.com/file/c625be6fb17e72845e091be5e4f5a6e0e42ded5b030a3911fee20620be0d9766/analysis/1539992663/

https://www.virustotal.com/file/ea9cd41316a6baf97a026e3d83c74d2781feb77d27e1cebb2e90932e5196fd5f/analysis/1540056413/

https://www.virustotal.com/file/4282183a0547e63b35e58efae79aca851e02fca1ccda16ba2d92062a95b31cc4/analysis/1540061471/

https://www.virustotal.com/file/4c0ce8baf7880be7482098b33e2d8966a2ee91660ae66ffac6ec931bf7a32520/analysis/1540017677/

https://www.virustotal.com/file/48e951c09b5a7a81d827d9cbb5f219dd23fee728573de3caad95ba43030a36f0/analysis/1540776557/

https://www.virustotal.com/file/de87eec9932e93b121464bcf57e32ca2a33455b7e271b76250d5af110ab449f9/analysis/1540047785/

https://www.virustotal.com/file/7b09c181f40cf2492b304e473c7c92012ce7994b898a5f8e68afef0a64404b68/analysis/1540061480/

https://www.virustotal.com/file/f0732ad7a4afa93e31ea7c8498b5c0817f4e5c64bfe0bfa18927291cf7ec389b/analysis/1540049563/

https://www.virustotal.com/file/eeb708f55cf5a6b1586ded69783480b02c90b1ebe10ebfb09d4406f2804dd779/analysis/1539994306/

https://www.virustotal.com/file/e3408a401615d9d43a3a77030de1836a5e74e29928b01ef94d4ab13535a1b8a8/analysis/1540033910/

https://www.virustotal.com/file/e75c0594643237c09c4888e1450f45e9bfc716ec66c2f7d2caa306d4d1bb471a/analysis/1540002171/

https://www.virustotal.com/file/75b09aff499532c70c8237b2e281dfc60a30db149f953863b739d50351a2242f/analysis/1539995444/

https://www.virustotal.com/file/4811fe9638f6741bfe299c47def7fd130d509c9f6530151bc0f230d48e8279c2/analysis/1539995464/

https://www.virustotal.com/file/76ad0a3d251529572e5a92eae9ba8e6b487a7e368b73a695f6b030f93706762d/analysis/1540013159/

https://www.virustotal.com/file/ebab3a14dc482ef5d702ddea7f246e80d852c24ed383607bf63fd9c641225ed8/analysis/1539992685/

https://www.virustotal.com/file/9287b76ba6e2d78c77c3c3550b97c159a9db42e9b87bd9881428651e9ee29adf/analysis/1540012784/

https://www.virustotal.com/file/34b4106bb60ca3917ed9441d02b1013875c3b2fc833a9c3421842d89d2a23304/analysis/1540776567/

https://www.virustotal.com/file/6756860ca6580cfcccaf63c8f1519d5e969cccec1ac7dbc38bd1750d4b6d052c/analysis/1539992663/

https://www.virustotal.com/file/1299269cc9897dcd3d4ae2384e97d7a66599711d2df8d5e330df3d368efbb5c4/analysis/1540049660/

https://www.virustotal.com/file/cb07ddcdadfbe955124133c549735cd6c01daa8d58237ebd775a914eb0989c14/analysis/1540000732/

https://www.virustotal.com/file/dd9cc1a8d27e44b784485a7897aea436fdda5bb603d7f681bc7d19a7f5c4d997/analysis/1540001145/

https://www.virustotal.com/file/6cb4917252e906d6ae44065e7ecfdb975736f30e74ea19309fb780d99ce133f8/analysis/1540051526/

https://www.virustotal.com/file/28d4f5087a9adbf66e2b776cf2c354b0425f760166af8230636d44e455230654/analysis/1540012735/

https://www.virustotal.com/file/d495f76157b1bfa9a5fe6ec91b35ed3d98505c1f6c0b189e8e70a26f59156c2c/analysis/1540776573/

https://www.virustotal.com/file/7daff1b012e9a5e37f714c7d2b31dba82517c9fa9bbd9260fd53ceebef360351/analysis/1540009444/

https://www.virustotal.com/file/54652a80b8a78ecfdfd55303b2e764ef6c59d0ffe57e482b99682748cbdca409/analysis/1540037875/

https://www.virustotal.com/file/2e01c816f12085f1b7061f4ffe0b350397df1b10460e31570f1de0e95b4b757c/analysis/1540059917/

https://www.virustotal.com/file/f5acea2600e0001a38341e9fbbd499bafaa557dfa91041dfb530cb9144fa19e0/analysis/1540010137/

https://www.virustotal.com/file/425525a90aaaa4ab9d1af76b34286d2ea3be8f08cb8a5d13c8da631f56d13a7d/analysis/1539998794/

https://www.virustotal.com/file/50d832bcf39122522360b2dfd6138db2f66c7510453e88f07020db3178e0318a/analysis/1540050833/

https://www.virustotal.com/file/711776544b74b675ad984fca7da9eb4fae66b02a9e74b769eb11ce36150d43f4/analysis/1539992716/

https://www.virustotal.com/file/3516f255091bc777e85354e82ada792fc1893363031f814c21ff1606806c95d7/analysis/1541381144/

https://www.virustotal.com/file/c304fca125c85d260082b96390fbcd371de9b76a1301e3d366a8c8609cd57142/analysis/1539991630/

https://www.virustotal.com/file/565e5e2b51ec0700376ae6fe2b23568112c4374b2323b796bedae1df394a009c/analysis/1540002077/

https://www.virustotal.com/file/44b8666af14aaba637405bb4c39ca14de196f5e5a4ab66ea7580b52c17c68690/analysis/1541295261/

https://www.virustotal.com/file/594670e2590f146286a9ff418c5d9ca71d602ddfe6eed81a9fa99aa3730a7b6a/analysis/1540054506/

https://www.virustotal.com/file/472a1de343a23f9823adc48288eae81fa3d4c18c468713530974e2fabdc58195/analysis/1540776592/

https://www.virustotal.com/file/511598fe024036f6a1574029c896980e1aeb8a2697b6be663b61924cacbf0444/analysis/1540012801/

https://www.virustotal.com/file/e0201c98644dbfaedcf6f62a2be837892a2b0d3096febff2a665a7be7ee08ca7/analysis/1541381147/

https://www.virustotal.com/file/abed5cb32aa2ba90d334e7df72ccd6d89e8847b46cb7629d2fbc4d3fb5425bac/analysis/1541381144/

https://www.virustotal.com/file/e57eaa0a009610937c7e3f729a0eb7dd09482ce43596f42b2c5c6dca12747e23/analysis/1540776597/

https://www.virustotal.com/file/d958a708e1311042562a8f186d42cb8adbb1588638e90fde3188e4cbb62ccaa8/analysis/1540021245/

https://www.virustotal.com/file/0159157e825b3a44a5f3d4cbcb8032306be1965954d29afd05b3a066b397eb6f/analysis/1540039522/

https://www.virustotal.com/file/dc349c599cdba3e53d665b4611c0c2ed5ea701a1e3e3d35e5d2739d34be5eb51/analysis/1540047802/

https://www.virustotal.com/file/74a9f94bdeb89ce66dfb178820f22050dc9a329622df39335fd8895c4268c592/analysis/1540041219/

https://www.virustotal.com/file/d04aaf864220e29a418153ef0dbc88071c8e2246fa9515bd3c537f1402836295/analysis/1540018512/

https://www.virustotal.com/file/d759817af95ffaa3dcdb6aeaee3c168fea19c99d153c28bc4b60cf10cb81df05/analysis/1541381150/

https://www.virustotal.com/file/5018296b1e44b4873563fd774e3ee9189bb30f9f7adb2393b12accdfc47722b5/analysis/1540024792/

https://www.virustotal.com/file/fdc579a16050163f03ce5900aa51fcea43f6d328a671fbcbc2762e7246d055f1/analysis/1540061216/

https://www.virustotal.com/file/f455b069eac87e584ffbe2b8e7095fe99a4afe4e879920e7812eb25665803026/analysis/1539992750/