|
You last visited: Today at 20:31
Advertisement
STOP KBOT ON BOXING NOW !!!!!!!!
Discussion on STOP KBOT ON BOXING NOW !!!!!!!! within the DarkOrbit forum part of the Browsergames category.
10/06/2011, 16:59
|
#76
|
elite*gold: 0
Join Date: Jan 2011
Posts: 2,180
Received Thanks: 1,672
|
on most servers captcha boxes dont work yet..on us east 3 .. i did not get captcha boxing manually...some boxes are empty..
when they will work ibot will show them
|
|
|
10/06/2011, 17:32
|
#77
|
elite*gold: 0
Join Date: Jul 2011
Posts: 41
Received Thanks: 9
|
OMG box captcha --' Bugpoint is bad
|
|
|
10/06/2011, 17:38
|
#78
|
elite*gold: 0
Join Date: Jul 2010
Posts: 80
Received Thanks: 6
|
Quote:
Originally Posted by old_friend
This is how will work kBot.
This is beta, maybe in future will be automatically entered the captcha code.
|
Hey Old_friend,
i have an idea like an other user had it before:
Why can't kBot implement the API of 
Because so everyone can solve capchtas for other users and can bot with solved capchtas by others users.
If the botters are incontent, they can buy credits to bot without solving capchtas.
I Think it is an good alternative for solving the capchtas eachtime by yourself.
It would be nice to intergrated (Login Data for the Website must also be stored in the Bot configs), if there is no other chance yet to fill out the capchtas completly automatically.
|
|
|
10/06/2011, 17:57
|
#79
|
elite*gold: 0
Join Date: Sep 2010
Posts: 129
Received Thanks: 30
|
KBot cannot implement this ideea.
KBot is just a crack of IBot ..
you should suggest this idea to IBot developer..
|
|
|
10/06/2011, 18:06
|
#80
|
elite*gold: 0
Join Date: May 2010
Posts: 76
Received Thanks: 10
|
The captcha is not a problem ... See Jdownloader he found the captcha of megaupload rapid etc ...
|
|
|
10/06/2011, 18:18
|
#81
|
elite*gold: 0
Join Date: Aug 2008
Posts: 105
Received Thanks: 15
|
today kbot updating or not :O ?
|
|
|
10/06/2011, 18:19
|
#82
|
elite*gold: 0
Join Date: Aug 2011
Posts: 442
Received Thanks: 78
|
Quote:
Originally Posted by morgado
yes good question why ??????
this is stupid kbot is a cracked version of ibot and the ibot 3.33 is aout for a few hours now and kbot its still inside the draw 
|
your say your probably old than some of the members on this forum, what i see is a 14year old kid typing at his computer acting like he's the big man. If your not happy with kbot then buy ibot or better yet create your own bot. We do not care about you, nor your moaning like an immature kid.
Everyone knows kbot takes longer to update maybe ivan holds it back maybe he has a deal with ibot maybe he just cracks or maybe he makes his own updates who knows if YOUR not happy like i said you have options create your own uber bot or get ibot.
@Roscal its probably being tested hence not being brought out yet as old_friend said his version is beta
@pechinezul look at the top left it says Kbot its a beta version whats the point in adding the control centre button on an unfinished product? its waste of time till its perfected also those with ibot have not "no captcha" so do they even get prompted or is it automatic? you dont know.
|
|
|
10/06/2011, 18:22
|
#83
|
elite*gold: 0
Join Date: Jul 2010
Posts: 80
Received Thanks: 6
|
Ok.
Kbot is the crack of ibot.
But the kBot crackers got it to create an own Gui.
So the question is:
Have the KBot Coders/Crackers scourcecode of the Ibot or do they just know the encryption to crack it?
If they have the scource code they can easily modify it.
But then i will contat the ibot coders ^^
Has anyone their website /forum or email adress?
|
|
|
10/06/2011, 18:25
|
#84
|
elite*gold: 0
Join Date: Jan 2011
Posts: 2,180
Received Thanks: 1,672
|
@brain1k ibot support is russian only..i contacted them once they only respond in russian..
well i am sure some guys on zhyk will figure it out
|
|
|
10/06/2011, 18:34
|
#85
|
elite*gold: 0
Join Date: Jul 2010
Posts: 80
Received Thanks: 6
|
Its ok.
I just send them my idea in english.
I hope they can deal with it. Even if its english.
Now i hope the problem with the capchtas is fast solved
|
|
|
10/06/2011, 18:47
|
#86
|
elite*gold: 50
Join Date: Jul 2010
Posts: 1,079
Received Thanks: 1,426
|
PHP Code:
<?php
// CAPTCHA Bypass Code (Works 99%)
//
// License: <a href="http://creativecommons.org/licenses/by-sa/2.0/uk/" class="bbc_url" title="External link" rel="nofollow external">http://creativecommo...s/by-sa/2.0/uk/</a>
//
// CAPTCHA Location: <a href="http://www.xovie.us/captcha/captcha.php" class="bbc_url" title="External link" rel="nofollow external">http://www.xovie.us/...cha/captcha.php</a>
//
function imageconverttruecolor(&$image)
{
$width = imagesx($image);
$height = imagesy($image);
$final = imagecreatetruecolor($width, $height);
imagecopy($final, $image, 0, 0, 0, 0, $width, $height);
imagedestroy($image); $image = $final;
}
// load images
$background = imagecreatefrompng("captcha.png");
$lettersimg = imagecreatefrompng("letters.png");
$captcha = imagecreatefrompng("http://www.xovie.us/captcha/captcha.php");
imageconverttruecolor($background);imageconverttruecolor($lettersimg);
imageconverttruecolor($captcha);
// first parse - difference test and pixel save
$pixels = array();
for($x = 0; $x < imagesx($captcha); $x++)
{
for($y = 0; $y < imagesy($captcha); $y++)
{
$src = imagecolorat($background, $x, $y);
$dst = imagecolorat($captcha, $x, $y);
if(!($src == 0 && $dst == 0) && ($src == $dst))
$pixels[$x][$y] = 0xFFFFFF;
else $pixels[$x][$y] = 0x000000;
}
}
imagedestroy($background);
// second parse - filter out pixel noise
for($p = 0; $p < 3; $p++)
{
// 3 noise parses
for($x = 0; $x < imagesx($captcha); $x++)
{
for($y = 0; $y < imagesy($captcha); $y++)
{
$filterpixel = true;
if(!$pixels[$x-1][$y-1] && !$pixels[$x+0][$y-1] && !$pixels[$x+1][$y-1])
$filterpixel = false;
// top
if(!$pixels[$x+1][$y-1] && !$pixels[$x+1][$y+0] && !$pixels[$x+1][$y+1])
$filterpixel = false;
// right
if(!$pixels[$x-1][$y+1] && !$pixels[$x+0][$y+1] && !$pixels[$x+1][$y+1])
$filterpixel = false;
// bottom
if(!$pixels[$x-1][$y-1] && !$pixels[$x-1][$y+0] && !$pixels[$x-1][$y+1])
$filterpixel = false;
// left
if($filterpixel) $pixels[$x][$y] = 0xFFFFFF;
}
}
}
for($x = 0; $x < imagesx($captcha); $x++)
{
$pixels[$x][0] = 0xFFFFFF;
$pixels[$x][1] = 0xFFFFFF;
$pixels[$x][imagesy($captcha) - 1] = 0xFFFFFF;
$pixels[$x][imagesy($captcha) - 2] = 0xFFFFFF;
}
for($y = 0; $y < imagesy($captcha); $y++)
{
$pixels[0][$y] = 0xFFFFFF; $pixels[1][$y] = 0xFFFFFF;
$pixels[imagesx($captcha) - 1][$y] = 0xFFFFFF;
$pixels[imagesx($captcha) - 2][$y] = 0xFFFFFF;
}
for($x = 50; $x < 54; $x++)
{
for($y = 2; $y < 5; $y++)
{
$pixels[$x][$y] = 0xFFFFFF;
}
}
// third parse - rebuild image (just for show)
for($x = 0; $x < imagesx($captcha); $x++)
{
for($y = 0; $y < imagesy($captcha); $y++)
{
imagesetpixel($captcha, $x, $y, 0xFFFFFF);
if(($x % 3) == 0 && ($y % 3) == 0 && $pixels[$x][$y] == 0)
{
imagesetpixel($captcha, $x, $y, 0xFF0000);
}
}
}
// fourth parse - basic ocr (slow) :-(
$letters = 'ABCE';
$ocr = '';
for($x1 = 0; $x1 < imagesx($captcha) - 25; $x1++)
{
for($y1 = 0; $y1 < imagesy($captcha) - 27; $y1++)
{
$score = array();
for($letter = 0; $letter < 4; $letter++)
{
for($x2 = 0; $x2 < 25; $x2++)
{
for($y2 = 0; $y2 < 27; $y2++)
{
$color = imagecolorat($lettersimg, ($letter * 25) + $x2, $y2);
if($pixels[$x1 + $x2][$y1 + $y2] == $color && $color == 0)
$score[$letter][0]++;
if($color == 0) $score[$letter][1]++;
}
}
}
$found = -1; $highest = 0;
for($letter = 0; $letter < 4; $letter++)
{
$result = (($score[$letter][1] / 100) * 90);
if($score[$letter][0] >= $result)
{
$result = ($score[$letter][0] - $result);
if($result > $highest)
{
$highest = $result;
$found = $letter;
}
}
}
if($found > -1)
{
$ocr .= $letters[$found];
$x1 += 10;
}
unset($score);
}
}
imagedestroy($lettersimg);unset($pixels);
// last of all output
header('Content-Type: image/png');
imagestring($captcha, 2, 0, 0, $ocr, 0);
imagepng($captcha);
imagedestroy($captcha);
?>
This PHP script should pass almost al types of captcha code, but it's useles as long Ibot programmers doesn't see this :/
|
|
|
10/06/2011, 18:58
|
#87
|
elite*gold: 0
Join Date: Aug 2011
Posts: 442
Received Thanks: 78
|
Quote:
Originally Posted by panzertank
@brain1k ibot support is russian only..i contacted them once they only respond in russian..
|
Unsure about this when i messged them they seemed to understand i had issues with payments and told me to contact the people that deal with there payments sure it was only a site address but they understood lol of cause after i said they were useless i got russian and google translate said "i do not understand"
roscal i dont know if ibot is automatically doing the codes or not, also wouldnt they have to write there own code in there own language php and java is different isn't it?
|
|
|
10/06/2011, 19:03
|
#88
|
elite*gold: 50
Join Date: Jul 2010
Posts: 1,079
Received Thanks: 1,426
|
Quote:
Originally Posted by logical691
Unsure about this when i messged them they seemed to understand i had issues with payments and told me to contact the people that deal with there payments sure it was only a site address but they understood lol of cause after i said they were useless i got russian and google translate said "i do not understand"
roscal i dont know if ibot is automatically doing the codes or not, also wouldnt they have to write there own code in there own language php and java is different isn't it?
|
Ofc are different! But the bypass method is the same, that script needs an "translation" to Java.
Ibot isn't bypassing captchas itself, it just pop-up an window which contains captcha photo, and you have to enter it automatically!
|
|
|
10/06/2011, 19:06
|
#89
|
elite*gold: 0
Join Date: Sep 2010
Posts: 2,547
Received Thanks: 2,165
|
Quote:
Originally Posted by roscatel
Why kbot 5.33 it's not public yet?
|
It will be released when will be done with all, include testing.
Quote:
Originally Posted by brain1k
Hey Old_friend,
i have an idea like an other user had it before:
Why can't kBot implement the API of 
Because so everyone can solve capchtas for other users and can bot with solved capchtas by others users.
If the botters are incontent, they can buy credits to bot without solving capchtas.
I Think it is an good alternative for solving the capchtas eachtime by yourself.
It would be nice to intergrated (Login Data for the Website must also be stored in the Bot configs), if there is no other chance yet to fill out the capchtas completly automatically.
|
Yeah, little more patience, will be all automated in future
|
|
|
10/06/2011, 19:09
|
#90
|
elite*gold: 0
Join Date: Jan 2011
Posts: 2,180
Received Thanks: 1,672
|
haha roscatel just googled "bypass captcha" and pasted the info from first result...
i m sure ibot coders are smarter than that..
if it was soo easy to bypass captcha there would be a lot more spam in forums etc than there is now..
|
|
|
Similar Threads
|
Stop your KBOT! Ibot updated!
08/25/2011 - DarkOrbit - 32 Replies
Ibot is updated to 3.15 so STOP YOUR KBOT TILL ITS 5.15 !
Yeye you can thank me :P
|
World's first boxing movie in 3D coming in 2012: "Tag Team Boxing"
07/22/2011 - Movies & Series - 2 Replies
for fans of boxing and 3D movies: World's first boxing movie in 3D coming in 2012: "Tag Team Boxing". See first teaser in German released just a few days before
http://www.youtube.com/watch?v=VVS5O7e16aE
|
All times are GMT +1. The time now is 20:32.
|
|