Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Is there a captcha in our future?
#10
It seems that detecting if an app is running on BlueStacks is much easier than I thought:

Code:
/**
* Returns true if device is Android port to x86
*/
public static boolean isx86Port()
{
    String kernelVersion = System.getProperty("os.version");
    if(kernelVersion != null && kernelVersion.contains("x86")) // for BlueStacks returns "2.6.38-android-x86+"
        return true;
    return false;
}

That little snippet of code could easily shut down anyone running CoC on BlueStacks.
Reply
 


Messages In This Thread
Is there a captcha in our future? - by Snarg - 02-05-2015, 12:59 PM
RE: Is there a captcha in our future? - by Snarg - 02-05-2015, 01:34 PM
RE: Is there a captcha in our future? - by Proxy - 02-05-2015, 01:42 PM
RE: Is there a captcha in our future? - by Proxy - 02-05-2015, 04:48 PM
RE: Is there a captcha in our future? - by Snarg - 02-06-2015, 02:07 AM

Forum Jump:


Users browsing this thread: 5 Guest(s)

About The Bytecode Club

We're a community focused on Reverse Engineering, we try to target Java/Android but we also include other langauges/platforms. We pride ourselves in supporting and free and open sourced applications.

Website