Captcha Cracking - Decaptcher.com

If you are coder and have an access to source code then yea

does decaptcha give you instrutctions on how to put the code in how to use the captcha breaker within your program?

or you must figure it out on your own?
 
does decaptcha give you instrutctions on how to put the code in how to use the captcha breaker within your program?

or you must figure it out on your own?

Yes. Here are the current api's:

C (Windows)
C (Unix)
PHP (all platforms)
C# (Windows)
Perl (Windows)
Python (Windows)
Visual Basic (Windows)
DLL sources (Windows)
SO sources (Unix)

Fairly well documented, and not hard to tweek.
 
Visual basic 6.0? or it can work on visual basic .net 2008 ?


thanks for the info
 
VB6 and perhaps .net.. I haven't tried.. I prefer PHP anyways that way it is completely cross platform,

BTW hostgator opened up port and the now the php script works.
 
if the API works for one language it will work for them all
 
i want to code a mass messenger or poster using this. i just cant decide for what service.
 
ok this is the thing. I have a vb.net program. So i see they have a API for visual basic 6.0. So that wont help me. What can i do? Can i have the PHP API and then somehow still use my vb.net project? is that possible?

another question:

if you guys are using the PHP APi, does that mean your program is also made in PHP ?
 
I might need some help setting this up to work with friend blaster pro.

Pm me if you are willing.


-Bebop
 
ok i got the php one uploaded. But now how do i view the captcha? do i have to edit the php to make it write the captcha to text file?
 
THis service works great. THey solve about 9 of the 10 captchas correctly.
Also they just released php script which uses POST so no more troubles with ports
 
That sucks, does anyone know how to get this to work with myspace software?
 
HTML POST requests working for you?

I wrote
1) a small java application
2) and as a further test I put the html post api example in a html (with my credentials and a working file certainly)
and transmitted it. No resultstring.

I analysed the traffic with wireshark: the transmission to decaptcher seems to work. I get a response back (200/OK) but then nothing else. Strange.

Anybody also having troubles ?
 
Nope. I use php api and submit the image via a post command through VB6 and inet execute command. I turn the image into a binary file and go from there.
 
I got an answer from decaptcher, they had problems with the post api, now it works, this is GREAT!

But the response string of the captcha is in lowercase letters, I wonder if this is ok?
 
Their sometimes upercase, sometimes lowercase but for the captchas I use it does not matter.

Here is PHP POST version:

Code:
Function Curlypost ($address, $postdata)
{
    $reffer = $address;
    $agent = "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)";
    $cookie_file_path = "cookie.txt"; 
    $ch = curl_init();	
    curl_setopt($ch, CURLOPT_URL, $address); 
    curl_setopt($ch, CURLOPT_USERAGENT, $agent);
    curl_setopt($ch, CURLOPT_POST, 1);  
    curl_setopt($ch, CURLOPT_POSTFIELDS,$postdata); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
    curl_setopt($ch, CURLOPT_REFERER, $reffer);
    curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); 
    curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); 
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
    curl_setopt($ch, CURLOPT_TIMEOUT, 50);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); 
    $result = curl_exec($ch);  
    curl_close($ch);  
    return $result;
}
  
Function RecogniseCaptcha ($username, $password, $filename)
{

  $postData = array();
  $postData[ 'function' ] = "picture2";
  $postData[ 'username' ] = "$username";
  $postData[ 'password' ] = "$password";
  $postData[ 'pict_to' ] = "0";
  $postData[ 'pict_type' ] = "0";
  $postData[ 'pict' ] = '@'.realpath("$filename");
  $postData[ 'submit' ] = "Send";
  
  $data = curlypost ("http://decaptcher.com/poster/", $postData);
  $pieces = explode ("|", $data);
  return $pieces [5];
}

echo RecogniseCaptcha ("username", "password", "pic.jpg");
 
Back
Top