检测Android虚拟机的方法和代码实现

云计算 虚拟化 Android
刚刚看了一些关于Detect Android Emulator的开源项目/文章/论文,我看的这些其实都是13年14年提出的方法,方法里大多是检测一些环境属性,检查一些文件这样,但实际上检测的思路并不局限于此。

刚刚看了一些关于Detect Android Emulator的开源项目/文章/论文,我看的这些其实都是13年14年提出的方法,方法里大多是检测一些环境属性,检查一些文件这样,但实际上检测的思路并不局限于此。有的是很直接了当去检测qemu,而其它的方法则是旁敲侧击比如检测adb,检测ptrace之类的。思路也很灵活。

***看到有提出通过利用QEMU这样的模拟CPU与物理CPU之间的实际差异(任务调度差异), 模拟传感器和物理传感器的差异,缓存的差异等方法来检测。相比检测环境属性,检测效果会提升很多。

[[228598]]

下面我就列出各个资料中所提出的一些方法/思路/代码供大家交流学习。

QEMU Properties

  1. public class Property { 
  2.    public String name
  3.    public String seek_value; 
  4.  
  5.    public Property(String name, String seek_value) { 
  6.        this.name = name
  7.        this.seek_value = seek_value; 
  8.    } 
  9. /** 
  10. * 已知属性, 格式为 [属性名, 属性值], 用于判定当前是否为QEMU环境 
  11. */ 
  12. private static Property[] known_props = {new Property("init.svc.qemud"null), 
  13.        new Property("init.svc.qemu-props"null), new Property("qemu.hw.mainkeys"null), 
  14.        new Property("qemu.sf.fake_camera"null), new Property("qemu.sf.lcd_density"null), 
  15.        new Property("ro.bootloader""unknown"), new Property("ro.bootmode""unknown"), 
  16.        new Property("ro.hardware""goldfish"), new Property("ro.kernel.android.qemud"null), 
  17.        new Property("ro.kernel.qemu.gles"null), new Property("ro.kernel.qemu""1"), 
  18.        new Property("ro.product.device""generic"), new Property("ro.product.model""sdk"), 
  19.        new Property("ro.product.name""sdk"), 
  20.        new Property("ro.serialno"null)}; 
  21. /** 
  22. * 一个阈值, 因为所谓"已知"的模拟器属性并不完全准确, 有可能出现假阳性结果, 因此保持一定的阈值能让检测效果更好 
  23. */ 
  24. private static int MIN_PROPERTIES_THRESHOLD = 0x5; 
  25. /** 
  26. * 尝试通过查询指定的系统属性来检测QEMU环境, ***跟阈值比较得出检测结果. 
  27. * @param context A {link Context} object for the Android application. 
  28. * @return {@code true} if enough properties where found to exist or {@code false} if not
  29. */ 
  30. public boolean hasQEmuProps(Context context) { 
  31.    int found_props = 0; 
  32.  
  33.    for (Property property : known_props) { 
  34.        String property_value = Utilities.getProp(context, property.name); 
  35.        // See if we expected just a non-null 
  36.        if ((property.seek_value == null) && (property_value != null)) { 
  37.            found_props++; 
  38.        } 
  39.        // See if we expected a value to seek 
  40.        if ((property.seek_value != null) && (property_value.indexOf(property.seek_value) != -1)) { 
  41.            found_props++; 
  42.        } 
  43.  
  44.    } 
  45.  
  46.    if (found_props >= MIN_PROPERTIES_THRESHOLD) { 
  47.        return true
  48.    } 
  49.  
  50.    return false

这些都是基于一些经验和特征来比对的属性, 这里的属性以及之后的一些文件呀属性啊之类的我就不再多作解释。

Device ID

  1. private static String[] known_device_ids = {"000000000000000", // Default emulator id 
  2.        "e21833235b6eef10", // VirusTotal id 
  3.        "012345678912345"}; 
  4. public static boolean hasKnownDeviceId(Context context) { 
  5.    TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); 
  6.  
  7.    String deviceId = telephonyManager.getDeviceId(); 
  8.  
  9.    for (String known_deviceId : known_device_ids) { 
  10.        if (known_deviceId.equalsIgnoreCase(deviceId)) { 
  11.            return true
  12.        } 
  13.  
  14.    } 
  15.    return false

Default Number

  1. private static String[] known_numbers = { 
  2.        "15555215554", // 模拟器默认电话号码 + VirusTotal 
  3.        "15555215556""15555215558""15555215560""15555215562""15555215564""15555215566"
  4.        "15555215568""15555215570""15555215572""15555215574""15555215576""15555215578"
  5.        "15555215580""15555215582""15555215584",}; 
  6. public static boolean hasKnownPhoneNumber(Context context) { 
  7.    TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); 
  8.  
  9.    String phoneNumber = telephonyManager.getLine1Number(); 
  10.  
  11.    for (String number : known_numbers) { 
  12.        if (number.equalsIgnoreCase(phoneNumber)) { 
  13.            return true
  14.        } 
  15.  
  16.    } 
  17.    return false

IMSI

  1. private static String[] known_imsi_ids = {"310260000000000" // 默认IMSI编号 
  2. }; 
  3. public static boolean hasKnownImsi(Context context) { 
  4.    TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); 
  5.    String imsi = telephonyManager.getSubscriberId(); 
  6.  
  7.    for (String known_imsi : known_imsi_ids) { 
  8.        if (known_imsi.equalsIgnoreCase(imsi)) { 
  9.            return true
  10.        } 
  11.    } 
  12.    return false

Build类

  1. public static boolean hasEmulatorBuild(Context context) { 
  2.    String BOARD = android.os.Build.BOARD; // The name of the underlying board, like "unknown"
  3.    // This appears to occur often on real hardware... that's sad 
  4.    // String BOOTLOADER = android.os.Build.BOOTLOADER; // The system bootloader version number. 
  5.    String BRAND = android.os.Build.BRAND; // The brand (e.g., carrier) the software is customized for, if any
  6.    // "generic" 
  7.    String DEVICE = android.os.Build.DEVICE; // The name of the industrial design. "generic" 
  8.    String HARDWARE = android.os.Build.HARDWARE; // The name of the hardware (from the kernel command line or 
  9.    // /proc). "goldfish" 
  10.    String MODEL = android.os.Build.MODEL; // The end-user-visible name for the end product. "sdk" 
  11.    String PRODUCT = android.os.Build.PRODUCT; // The name of the overall product. 
  12.    if ((BOARD.compareTo("unknown") == 0) /* || (BOOTLOADER.compareTo("unknown") == 0) */ 
  13.            || (BRAND.compareTo("generic") == 0) || (DEVICE.compareTo("generic") == 0) 
  14.            || (MODEL.compareTo("sdk") == 0) || (PRODUCT.compareTo("sdk") == 0) 
  15.            || (HARDWARE.compareTo("goldfish") == 0)) { 
  16.        return true
  17.    } 
  18.    return false

运营商名

  1. public static boolean isOperatorNameAndroid(Context paramContext) { 
  2.    String szOperatorName = ((TelephonyManager) paramContext.getSystemService(Context.TELEPHONY_SERVICE)).getNetworkOperatorName(); 
  3.    boolean isAndroid = szOperatorName.equalsIgnoreCase("android"); 
  4.    return isAndroid; 

QEMU驱动

  1. private static String[] known_qemu_drivers = {"goldfish"}; 
  2. /** 
  3. * 读取驱动文件, 检查是否包含已知的qemu驱动 
  4. * @return {@code true} if any known drivers where found to exist or {@code false} if not
  5. */ 
  6. public static boolean hasQEmuDrivers() { 
  7.    for (File drivers_file : new File[]{new File("/proc/tty/drivers"), new File("/proc/cpuinfo")}) { 
  8.        if (drivers_file.exists() && drivers_file.canRead()) { 
  9.            // We don't care to read much past things since info we care about should be inside here 
  10.            byte[] data = new byte[1024]; 
  11.            try { 
  12.                InputStream is = new FileInputStream(drivers_file); 
  13.                is.read(data); 
  14.                is.close(); 
  15.            } catch (Exception exception) { 
  16.                exception.printStackTrace(); 
  17.            } 
  18.  
  19.            String driver_data = new String(data); 
  20.            for (String known_qemu_driver : FindEmulator.known_qemu_drivers) { 
  21.                if (driver_data.indexOf(known_qemu_driver) != -1) { 
  22.                    return true
  23.                } 
  24.            } 
  25.        } 
  26.    } 
  27.  
  28.    return false

QEMU文件

  1. private static String[] known_files = {"/system/lib/libc_malloc_debug_qemu.so""/sys/qemu_trace"
  2.        "/system/bin/qemu-props"}; 
  3. /** 
  4. * 检查是否存在已知的QEMU环境文件 
  5. * @return {@code true} if any files where found to exist or {@code false} if not
  6. */ 
  7. public static boolean hasQEmuFiles() { 
  8.    for (String pipe : known_files) { 
  9.        File qemu_file = new File(pipe); 
  10.        if (qemu_file.exists()) { 
  11.            return true
  12.        } 
  13.    } 
  14.  
  15.    return false

Genymotion文件

  1. private static String[] known_geny_files = {"/dev/socket/genyd""/dev/socket/baseband_genyd"}; 
  2. /** 
  3. * 检查是否存在已知的Genemytion环境文件 
  4. * @return {@code true} if any files where found to exist or {@code false} if not
  5. */ 
  6. public static boolean hasGenyFiles() { 
  7.    for (String file : known_geny_files) { 
  8.        File geny_file = new File(file); 
  9.        if (geny_file.exists()) { 
  10.            return true
  11.        } 
  12.    } 
  13.  
  14.    return false

QEMU管道

  1. private static String[] known_pipes = {"/dev/socket/qemud""/dev/qemu_pipe"}; 
  2. /** 
  3. * 检查是否存在已知的QEMU使用的管道 
  4. * @return {@code true} if any pipes where found to exist or {@code false} if not
  5. */ 
  6. public static boolean hasPipes() { 
  7.    for (String pipe : known_pipes) { 
  8.        File qemu_socket = new File(pipe); 
  9.        if (qemu_socket.exists()) { 
  10.            return true
  11.        } 
  12.    } 
  13.  
  14.    return false

设置断点

  1. static { 
  2.    // This is only valid for arm 
  3.    System.loadLibrary("anti"); 
  4. public native static int qemuBkpt(); 
  5.  
  6. public static boolean checkQemuBreakpoint() { 
  7.    boolean hit_breakpoint = false
  8.  
  9.    // Potentially you may want to see if this is a specific value 
  10.    int result = qemuBkpt(); 
  11.  
  12.    if (result > 0) { 
  13.        hit_breakpoint = true
  14.    } 
  15.  
  16.    return hit_breakpoint; 

以下是对应的c++代码

  1. void handler_sigtrap(int signo) { 
  2.  exit(-1); 
  3.  
  4. void handler_sigbus(int signo) { 
  5.  exit(-1); 
  6.  
  7. int setupSigTrap() { 
  8.  // BKPT throws SIGTRAP on nexus 5 / oneplus one (and most devices) 
  9.  signal(SIGTRAP, handler_sigtrap); 
  10.  // BKPT throws SIGBUS on nexus 4 
  11.  signal(SIGBUS, handler_sigbus); 
  12.  
  13. // This will cause a SIGSEGV on some QEMU or be properly respected 
  14. int tryBKPT() { 
  15.  __asm__ __volatile__ ("bkpt 255"); 
  16.  
  17. jint Java_diff_strazzere_anti_emulator_FindEmulator_qemuBkpt(JNIEnv* env, jobject jObject) { 
  18.  
  19.  pid_t child = fork(); 
  20.  int child_status, status = 0; 
  21.  
  22.  if(child == 0) { 
  23.    setupSigTrap(); 
  24.    tryBKPT(); 
  25.  } else if(child == -1) { 
  26.    status = -1; 
  27.  } else { 
  28.  
  29.    int timeout = 0; 
  30.    int i = 0; 
  31.    while ( waitpid(child, &child_status, WNOHANG) == 0 ) { 
  32.      sleep(1); 
  33.      // Time could be adjusted here, though in my experience if the child has not returned instantly 
  34.      // then something has gone wrong and it is an emulated device 
  35.      if(i++ == 1) { 
  36.        timeout = 1; 
  37.        break; 
  38.      } 
  39.    } 
  40.  
  41.    if(timeout == 1) { 
  42.      // Process timed out - likely an emulated device and child is frozen 
  43.      status = 1; 
  44.    } 
  45.  
  46.    if ( WIFEXITED(child_status) ) { 
  47.      // 子进程正常退出 
  48.      status = 0; 
  49.    } else { 
  50.      // Didn't exit properly - very likely an emulator 
  51.      status = 2; 
  52.    } 
  53.  
  54.    // Ensure child is dead 
  55.    kill(child, SIGKILL); 
  56.  } 
  57.  
  58.  return status; 

这里我的描述可能并不准确, 因为并没有找到相关的资料. 我只能以自己的理解来解释一下:

SIGTRAP是调试器设置断点时发生的信号, 在nexus5或一加手机等大多数手机都可以触发. SIGBUS则是在一个总线错误, 指针也许访问了一个有效地址, 但总线会因为数据未对齐等原因无法使用, 在nexus4手机上可以触发. 而bkpt则是arm的断点指令, 这是曾经qemu被提出来的一个issue, qemu会因为SIGSEGV信号而崩溃, 作者想利用这个崩溃来检测qemu. 如果程序没有正常退出或被冻结, 那么就可以认定很可能是在模拟器里.

ADB

  1. public static boolean hasEmulatorAdb() { 
  2.    try { 
  3.        return FindDebugger.hasAdbInEmulator(); 
  4.    } catch (Exception exception) { 
  5.        exception.printStackTrace(); 
  6.        return false
  7.    } 

isUserAMonkey()

  1. public static boolean hasEmulatorAdb() { 
  2.    try { 
  3.        return FindDebugger.hasAdbInEmulator(); 
  4.    } catch (Exception exception) { 
  5.        exception.printStackTrace(); 
  6.        return false
  7.    } 

这个其实是用于检测当前操作到底是用户还是脚本在要求应用执行。

isDebuggerConnected()

  1. /** 
  2. * 你信或不信, 还真有许多加固程序使用这个方法... 
  3. */ 
  4. public static boolean isBeingDebugged() { 
  5.    return Debug.isDebuggerConnected(); 

这个方法是用来检测调试,判断是否有调试器连接。

ptrace

  1. private static String tracerpid = "TracerPid"
  2. /** 
  3. * 阿里巴巴用于检测是否在跟踪应用进程 
  4. * 容易规避, 用法是创建一个线程每3秒检测一次, 如果检测到则程序崩溃 
  5. * @return 
  6. * @throws IOException 
  7. */ 
  8. public static boolean hasTracerPid() throws IOException { 
  9.    BufferedReader reader = null
  10.    try { 
  11.        reader = new BufferedReader(new InputStreamReader(new FileInputStream("/proc/self/status")), 1000); 
  12.        String line; 
  13.  
  14.        while ((line = reader.readLine()) != null) { 
  15.            if (line.length() > tracerpid.length()) { 
  16.                if (line.substring(0, tracerpid.length()).equalsIgnoreCase(tracerpid)) { 
  17.                    if (Integer.decode(line.substring(tracerpid.length() + 1).trim()) > 0) { 
  18.                        return true
  19.                    } 
  20.                    break; 
  21.                } 
  22.            } 
  23.        } 
  24.  
  25.    } catch (Exception exception) { 
  26.        exception.printStackTrace(); 
  27.    } finally { 
  28.        reader.close(); 
  29.    } 
  30.    return false

这个方法是通过检查 /proc/self/status 的TracerPid项,这个项在没有跟踪的时候默认为0,当有程序在跟踪时会修改为对应的pid。因此如果TracerPid不等于0,那么就可以认为是在模拟器环境。

TCP连接

  1. public static boolean hasAdbInEmulator() throws IOException { 
  2.    boolean adbInEmulator = false
  3.    BufferedReader reader = null
  4.    try { 
  5.        reader = new BufferedReader(new InputStreamReader(new FileInputStream("/proc/net/tcp")), 1000); 
  6.        String line; 
  7.        // Skip column names 
  8.        reader.readLine(); 
  9.  
  10.        ArrayList<tcp> tcpList = new ArrayList<tcp>(); 
  11.  
  12.        while ((line = reader.readLine()) != null) { 
  13.            tcpList.add(tcp.create(line.split("\\W+"))); 
  14.        } 
  15.  
  16.        reader.close(); 
  17.  
  18.        // Adb is always bounce to 0.0.0.0 - though the port can change 
  19.        // real devices should be != 127.0.0.1 
  20.        int adbPort = -1; 
  21.        for (tcp tcpItem : tcpList) { 
  22.            if (tcpItem.localIp == 0) { 
  23.                adbPort = tcpItem.localPort; 
  24.                break; 
  25.            } 
  26.        } 
  27.  
  28.        if (adbPort != -1) { 
  29.            for (tcp tcpItem : tcpList) { 
  30.                if ((tcpItem.localIp != 0) && (tcpItem.localPort == adbPort)) { 
  31.                    adbInEmulator = true
  32.                } 
  33.            } 
  34.        } 
  35.    } catch (Exception exception) { 
  36.        exception.printStackTrace(); 
  37.    } finally { 
  38.        reader.close(); 
  39.    } 
  40.  
  41.    return adbInEmulator; 
  42.  
  43. public static class tcp { 
  44.  
  45.    public int id; 
  46.    public long localIp; 
  47.    public int localPort; 
  48.    public int remoteIp; 
  49.    public int remotePort; 
  50.  
  51.    static tcp create(String[] params) { 
  52.        return new tcp(params[1], params[2], params[3], params[4], params[5], params[6], params[7], params[8], 
  53.                        params[9], params[10], params[11], params[12], params[13], params[14]); 
  54.    } 
  55.  
  56.    public tcp(String id, String localIp, String localPort, String remoteIp, String remotePort, String state, 
  57.                    String tx_queue, String rx_queue, String tr, String tm_when, String retrnsmt, String uid, 
  58.                    String timeout, String inode) { 
  59.        this.id = Integer.parseInt(id, 16); 
  60.        this.localIp = Long.parseLong(localIp, 16); 
  61.        this.localPort = Integer.parseInt(localPort, 16); 
  62.    } 

这个方法是通过读取/proc/net/tcp的信息来判断是否存在adb,比如真机的的信息为0: 4604D20A:B512 A3D13AD8...,而模拟器上的对应信息就是 0: 00000000:0016 00000000:0000,因为adb通常是反射到0.0.0.0这个ip上,虽然端口有可能改变,但确实是可行的。

TaintDroid

  1. public static boolean hasPackageNameInstalled(Context context, String packageName) { 
  2.    PackageManager packageManager = context.getPackageManager(); 
  3.  
  4.    // In theory, if the package installer does not throw an exception, package exists 
  5.    try { 
  6.        packageManager.getInstallerPackageName(packageName); 
  7.        return true
  8.    } catch (IllegalArgumentException exception) { 
  9.        return false
  10.    } 
  11. public static boolean hasAppAnalysisPackage(Context context) { 
  12.    return Utilities.hasPackageNameInstalled(context, "org.appanalysis"); 
  13. public static boolean hasTaintClass() { 
  14.    try { 
  15.        Class.forName("dalvik.system.Taint"); 
  16.        return true
  17.    } 
  18.    catch (ClassNotFoundException exception) { 
  19.        return false
  20.    } 

这个比较单纯了。就是通过检测包名,检测Taint类来判断是否安装有TaintDroid这个污点分析工具。另外也还可以检测TaintDroid的一些成员变量。

eth0

  1. private static boolean hasEth0Interface() { 
  2.    try { 
  3.        for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements(); ) { 
  4.            NetworkInterface intf = en.nextElement(); 
  5.            if (intf.getName().equals("eth0")) 
  6.                return true
  7.        } 
  8.    } catch (SocketException ex) { 
  9.    } 
  10.    return false

检测是否存在eth0网卡。

传感器

手机上配备了各式各样的传感器, 但它们实质上都是基于从环境收集的信息输出值, 因此想要模拟传感器是非常具有挑战性的. 这些传感器为识别手机和模拟器提供了新的机会。

比如在论文 Rage Against the Virtual Machine: Hindering Dynamic Analysis of Android Malware 中,作者对Android模拟器的加速器进行测试,作者发现Android模拟器上的传感器会在相同的时间间隔内(观测结果是0.8s, 标准偏差为0.003043)产生相同的值。显然对于现实世界的传感器,这是不可能的。

于是我们可以先注册一个传感器监听器,如果注册失败,就可能是在模拟器中(排除实际设备不支持传感器的可能性)。如果注册成功,那么检查onSensorChanged回调方法,如果在连续调用这个方法的过程所观察到的传感器值或时间间隔相同,那么就可以认定是在模拟器环境中。

QEMU任务调度

出于性能优化的原因, QEMU在每次执行指令时都不会主动更新程序计数器(PC), 由于翻译指令在本地执行, 而增加PC需要额外的指令带来开销. 所以QEMU只在执行那些从线性执行过程里中断的指令(例如分支指令)时才会更新程序计数器。

这也就导致在执行一些基本块的期间如果发生了调度事件, 那么也没有办法恢复调度前的PC,也是出于这个原因,QEMU仅在执行基本块后才发生调度事件,绝不会执行的过程中发生。

如上图,因为调度可能在任意时间发生,所以在非模拟器环境下,会观察到大量的调度点. 而在模拟器环境中,只能看到特定的调度点。

SMC识别

因为QEMU会跟踪代码页的改动,于是存在一种新颖的方法来检测QEMU--使用自修改代码(Self-Modifying Code, SMC)引起模拟器和实际设备之间的执行流变化。

ARM处理器包含有两个不同的缓冲Cache, 一个用于指令访问(I-Cache),而另一个用于数据访问(D-Cache)。但如ARM这样的哈佛架构并不能保证I-Cache和D-Cache之间的一致性。因此CPU有可能在新代码片已经写入主存后执行旧的代码片(也许是无效的)。

这个问题可以通过强迫两个缓存一致得到解决, 这有两步:

  1. 清理主存, 以便将D-Cache中新写入的代码移入主存
  2. 使I-Cache无效, 以便它可以用主存的新内容重新填充

在原生Android代码中,可以使用cacheflush函数,该函数通过系统调用完成上述操作。

识别代码,使用一个具有读写权限的内存, 其中包含两个不同函数f1和f2的代码,这两个函数其实很简单,只是单纯在一个全局字符串变量的末尾附加各自的函数名称, 这两个函数会在循环里交错执行,这样就可以通过结果的字符串推断出函数调用序列。

如前所述,我们调用cacheflush来同步缓存. 在实际设备和模拟器上运行代码得到的结果是相同的--每次执行都会产生一致的函数调用序列。

接下来我们移除调用cacheflush,执行相同的操作。那么在实际设备中, 我们每次运行都会观察到一个随机的函数调用序列,这也如前所述的那样,因为I-Cache可能包含一些旧指令,每次调用的时候缓存都不同步所导致的。

而模拟器环境却不会发生这样的情况, 而且函数调用序列会跟之前没有移除cacheflush时完全相同, 也就是每次函数调用前缓存都是一致的. 这是因为QEMU会跟踪代码页上的修改,并确保生成的代码始终与内存中的目标指令匹配, 因此QEMU会放弃之前版本的代码翻译并重新生成新代码。

结语

看到这里会不会已经觉得检测方法够多了,可是我还只是看了13年14年的资料。有关近几年的资料还未涉及。

***我就把这些检测方法整合在一张思维导图(见附件)里供大家一览,欢迎大家和我交流带带我

参考链接

strazzere/anti-emulator:***发表于2013年HitCon, 提出了检测虚拟机的一些方法和思路, 应该是Android模拟器检测的开山之作了, 本文也主要基于该仓库进行讲解.

Rage Against the Virtual Machine: Hindering Dynamic Analysis of Android Malware:通过任务调度检测和使用SMC识别都是参考于这篇论文. 这篇论文和下面这篇论文十分有参考价值, 值得一读.

Evading Android Runtime Analysis via Sandbox Detection:论文中提出了大量的检测Android运行环境的方法和思路, 内容丰富且十分全面, 也值得一读.

CalebFenton/AndroidEmulatorDetect:这个仓库其实是整合了一些文章和仓库中的检测方法和代码, 而且并不全面, 不过倒是给出了很多参考链接, 我顺藤摸瓜.

How can I detect when an Android application is running in the emulator? 网友给出了很多解决方法. 但实际上并不全面, 也只是模拟器检测中的冰山一角罢了. 毕竟可以检测的地方多了去了。

利用任务调度特性检测Android模拟器

 

责任编辑:武晓燕 来源: 看雪社区
相关推荐

2012-05-18 10:22:23

2013-07-17 09:32:58

2010-07-26 09:02:38

2023-02-20 14:24:56

AndroidDalvikART

2018-10-11 11:07:28

Windows虚拟机方法

2010-01-21 11:17:36

xen虚拟机

2023-04-26 07:51:36

虚拟机操作系统进程

2016-09-27 20:12:33

Android虚拟机Android动态调试

2022-01-26 16:30:47

代码虚拟机Linux

2009-10-13 15:00:36

物理机虚拟机网络安全

2011-04-08 09:25:50

虚拟机

2021-03-16 10:36:38

网络钓鱼安全检测网络安全

2009-09-07 21:51:59

2022-08-09 11:25:52

数据备份服务器虚拟化磁盘

2010-03-03 09:57:37

Linux虚拟机

2020-01-17 10:52:37

无服务器容器技术

2009-06-29 19:36:07

虚拟机备份虚拟环境

2020-12-08 05:58:57

CPU虚拟化虚拟机

2024-03-13 08:03:02

2009-09-04 08:33:25

VirtualBox虚
点赞
收藏

51CTO技术栈公众号