The Bytecode Club
Is there a captcha in our future? - Printable Version

+- The Bytecode Club (https://the.bytecode.club)
+-- Forum: Lobby (https://the.bytecode.club/forumdisplay.php?fid=1)
+--- Forum: Game Cheating, Botting & Reverse Engineering (https://the.bytecode.club/forumdisplay.php?fid=97)
+--- Thread: Is there a captcha in our future? (/showthread.php?tid=559)

Pages: 1 2


Is there a captcha in our future? - Snarg - 02-05-2015

IF there is any truth to the alleged leaked patch notes, what do you think the, 'New system to prevent bot attacks', is going to bring?

IMHO, it will possibly be a captcha system. For those who have not yet seen it, this was posted on Supercells sub-Reddit about an hour ago:
[Image: 8acfT7Z.jpg]


RE: Is there a captcha in our future? - SongHyeKyo - 02-05-2015

Link please?

I try to look in supercell forum and in facebook clash of clan .. no announcement update like that ..


RE: Is there a captcha in our future? - Snarg - 02-05-2015

(02-05-2015, 01:12 PM)SongHyeKyo Wrote:  Link please?

I try to look in supercell forum and in facebook clash of clan .. no announcement update like that ..

Threads are being deleted from SC's forum as fast as they are made.


RE: Is there a captcha in our future? - Proxy - 02-05-2015

Really a captcha system would be the only way to stop botters since the Devs make it look just as if a player did the attack. Not sure they'll do this though because I'd imagine this would be annoying/irritate a lot more people then just botters.
I guess we'll have to see though.


RE: Is there a captcha in our future? - sheva370 - 02-05-2015

No need captcha, just block play COC in Bluestack Sad


RE: Is there a captcha in our future? - Proxy - 02-05-2015

(02-05-2015, 04:30 PM)sheva370 Wrote:  No need captcha, just block play COC in Bluestack Sad

Pretty sure this isn't possible since Bluestacks makes the game believe it's actually being played on an Android defense. Although I may be wrong...


RE: Is there a captcha in our future? - Sm007hCriminal - 02-05-2015

I honestly think they are trying to block the "sandbox attack" feature on the xmodgames.


RE: Is there a captcha in our future? - kingburat - 02-05-2015

i think there were block the bluestack user


RE: Is there a captcha in our future? - Mystery7 - 02-05-2015

Blocking bot attacks isnt possible at all.
Specially this one... the answer is simple.. the game is click dependent so is everything you do in it.. everything the bot does is just a series of clicks and scans... block the clicks no one will ever play coc... as for that captcha I just dont see that happening


RE: Is there a captcha in our future? - Snarg - 02-06-2015

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.