1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
| package com.qianyu.antiemulator;
import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader;
import android.content.Context; import android.telephony.TelephonyManager; import android.util.Log;
public class AntiEmulator { private static String[] known_pipes = { "/dev/socket/qemud", "/dev/qemu_pipe" }; public static boolean checkPipes() { for (int i = 0; i < known_pipes.length; i++) { String pipes = known_pipes[i]; File qemu_socket = new File(pipes); if (qemu_socket.exists()) { Log.v("Result:", "Find pipes!"); return true; } } Log.i("Result:", "Not Find pipes!"); return false; } private static String[] known_qemu_drivers = { "goldfish" };
public static Boolean checkQEmuDriverFile() { File driver_file = new File("/proc/tty/drivers"); if (driver_file.exists() && driver_file.canRead()) { byte[] data = new byte[1024]; try { InputStream inStream = new FileInputStream(driver_file); inStream.read(data); inStream.close(); } catch (Exception e) { e.printStackTrace(); } String driver_data = new String(data); for (String known_qemu_driver : AntiEmulator.known_qemu_drivers) { if (driver_data.indexOf(known_qemu_driver) != -1) { Log.i("Result:", "Find know_qemu_drivers!"); return true; } } } Log.i("Result:", "Not Find known_qemu_drivers!"); return false; } private static String[] known_files = { "/system/lib/libc_malloc_debug_qemu.so", "/sys/qemu_trace", "/system/bin/qemu-props" }; public static Boolean CheckEmulatorFiles() { for (int i = 0; i < known_files.length; i++) { String file_name = known_files[i]; File qemu_file = new File(file_name); if (qemu_file.exists()) { Log.v("Result:", "Find Emulator Files!"); return true; } } Log.v("Result:", "Not Find Emulator Files!"); return false; } private static String[] known_numbers = { "15555215554", "15555215556", "15555215558", "15555215560", "15555215562", "15555215564", "15555215566", "15555215568", "15555215570", "15555215572", "15555215574", "15555215576", "15555215578", "15555215580", "15555215582", "15555215584", }; public static Boolean CheckPhoneNumber(Context context) { TelephonyManager telephonyManager = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE);
String phonenumber = telephonyManager.getLine1Number();
for (String number : known_numbers) { if (number.equalsIgnoreCase(phonenumber)) { Log.v("Result:", "Find PhoneNumber!"); return true; } } Log.v("Result:", "Not Find PhoneNumber!"); return false; } private static String[] known_device_ids = { "000000000000000" }; public static Boolean CheckDeviceIDS(Context context) { TelephonyManager telephonyManager = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE);
String device_ids = telephonyManager.getDeviceId();
for (String know_deviceid : known_device_ids) { if (know_deviceid.equalsIgnoreCase(device_ids)) { Log.v("Result:", "Find ids: 000000000000000!"); return true; } } Log.v("Result:", "Not Find ids: 000000000000000!"); return false; } private static String[] known_imsi_ids = { "310260000000000" };
public static Boolean CheckImsiIDS(Context context) { TelephonyManager telephonyManager = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE);
String imsi_ids = telephonyManager.getSubscriberId();
for (String know_imsi : known_imsi_ids) { if (know_imsi.equalsIgnoreCase(imsi_ids)) { Log.v("Result:", "Find imsi ids: 310260000000000!"); return true; } } Log.v("Result:", "Not Find imsi ids: 310260000000000!"); return false; }
public static Boolean CheckEmulatorBuild(Context context) { String BOARD = android.os.Build.BOARD; String BOOTLOADER = android.os.Build.BOOTLOADER; String BRAND = android.os.Build.BRAND; String DEVICE = android.os.Build.DEVICE; String HARDWARE = android.os.Build.HARDWARE; String MODEL = android.os.Build.MODEL; String PRODUCT = android.os.Build.PRODUCT; if (BOARD == "unknown" || BOOTLOADER == "unknown" || BRAND == "generic" || DEVICE == "generic" || MODEL == "sdk" || PRODUCT == "sdk" || HARDWARE == "goldfish") { Log.v("Result:", "Find Emulator by EmulatorBuild!"); return true; } Log.v("Result:", "Not Find Emulator by EmulatorBuild!"); return false; }
public static boolean CheckOperatorNameAndroid(Context context) { String szOperatorName = ((TelephonyManager) context .getSystemService("phone")).getNetworkOperatorName(); if (szOperatorName.toLowerCase().equals("android") == true) { Log.v("Result:", "Find Emulator by OperatorName!"); return true; } Log.v("Result:", "Not Find Emulator by OperatorName!"); return false; }
public static String readCpuInfo() { String result = ""; try { String[] args = { "/system/bin/cat", "/proc/cpuinfo" }; ProcessBuilder cmd = new ProcessBuilder(args);
Process process = cmd.start(); StringBuffer sb = new StringBuffer(); String readLine = ""; BufferedReader responseReader = new BufferedReader( new InputStreamReader(process.getInputStream(), "utf-8")); while ((readLine = responseReader.readLine()) != null) { sb.append(readLine); }d responseReader.close(); result = sb.toString().toLowerCase(); } catch (IOException ex) { } return result; } private boolean checkCPUInfo() { String cpuInfo = readCpuInfo(); if ((cpuInfo.contains("intel") || cpuInfo.contains("amd"))) { return true; } return false; } private static String[] known_bluestacks = { "/data/app/com.bluestacks.appmart-1.apk", "/data/app/com.bluestacks.BstCommandProcessor-1.apk", "/data/app/com.bluestacks.help-1.apk", "/data/app/com.bluestacks.home-1.apk", "/data/app/com.bluestacks.s2p-1.apk", "/data/app/com.bluestacks.searchapp-1.apk", "/data/bluestacks.prop", "/data/data/com.androVM.vmconfig", "/data/data/com.bluestacks.accelerometerui", "/data/data/com.bluestacks.appfinder", "/data/data/com.bluestacks.appmart", "/data/data/com.bluestacks.appsettings", "/data/data/com.bluestacks.BstCommandProcessor", "/data/data/com.bluestacks.bstfolder", "/data/data/com.bluestacks.help", "/data/data/com.bluestacks.home", "/data/data/com.bluestacks.s2p", "/data/data/com.bluestacks.searchapp", "/data/data/com.bluestacks.settings", "/data/data/com.bluestacks.setup", "/data/data/com.bluestacks.spotlight", "/mnt/prebundledapps/bluestacks.prop.orig" };
public static boolean checkBlueStacksFiles() { for (int i = 0; i < known_bluestacks.length; i++) { String file_name = known_bluestacks[i]; File qemu_file = new File(file_name); if (qemu_file.exists()) { Log.e("Result:", "Find BlueStacks Files!"); return true; } } Log.e("Result:", "Not Find BlueStacks Files!"); return false; } }
|