Jump to content
UBot Underground

problem with captcha services


Recommended Posts

is anybody having problems with these captcha services...i have decaptcher and ITT and neither is working in my bots...can someone chime in to let me know if its just me or the services

Link to post
Share on other sites

aiight i checked into it and im more confused than when i first posed the question :D decaptcher said all of this: Pseudo-code

Several versions of workflow can be easily imagined, something like this:

 

Example 1. Several pictures in one session

 

1. init

2. login ( address, login, password, port )

3. while ( has more pictures to be sent )

4. picture2 ( picture data, text, Major ID, Minor ID )

OR

picture_multipart

( all pictures data, text, Major ID, Minor ID )

5. if ( picture is considered badly recognized )

6. picture_bad2 ( Major ID, Minor ID )

7. end while

8. close ( session )

 

 

Example 2. One picture in each session

 

1. init

2. while ( has more pictures to be sent )

3. login ( address, login, password, port )

4. picture2 ( picture data, text, Major ID, Minor ID )

OR

picture_multipart

( all pictures data, text, Major ID, Minor ID )

5. close ( session )

... do something you need...

6. if ( picture is considered badly recognized )

7. do

8. login ( address, login, password, port )

9. picture_bad2 ( Major ID, Minor ID )

10. close ( session )

11. done

12.end while

 

 

Example 3. Massive approach

If you need to send many pictures simultaneously start many threads each of which will send pictures to server. In case of non-thread environment make multiple instances of the software.

 

1. start number of threads you need

2. each thread runs function from Example 1 or Example 2

3. wait for threads to finish

 

 

Where can I find an example of code for API usage?

APIs for all languages include operational example that can be used as a start point for integration.

 

How HTTP API works?

You just make POST of a multipart/form-data form which contains all parameters that API requires.

 

Example 4. POST a picture

 

<form

method="post"

action="http://poster.decaptcher.com/"

enctype="multipart/form-data">

<input type="hidden" name="function" value="picture2">

<input type="text" name="username" value="client">

<input type="text" name="password" value="qwerty">

<input type="file" name="pict">

<input type="text" name="pict_to" value="0">

<input type="text" name="pict_type" value="0">

<input type="submit" value="Send">

</form>

 

 

 

Example 5. POST a multipart picture (ASIRRA CAPTCHA)

 

<form

method="post"

action="http://poster.decaptcher.com/"

enctype="multipart/form-data">

<input type="hidden" name="function" value="picture2">

<input type="text" name="username" value="client">

<input type="text" name="password" value="qwerty">

 

<input type="file" name="pict1">

<input type="file" name="pict2">

<input type="file" name="pict3">

<input type="file" name="pict4">

<input type="file" name="pict5">

<input type="file" name="pict6">

<input type="file" name="pict7">

<input type="file" name="pict8">

<input type="file" name="pict9">

<input type="file" name="pict10">

<input type="file" name="pict11">

<input type="file" name="pict12">

 

<input type="text" name="pict_to" value="0">

<input type="text" name="pict_type" value="86">

<input type="submit" value="Send">

</form>

 

 

 

Example 6. Claim picture as badly recognized

 

<form

method="post"

action="http://poster.decaptcher.com/"

enctype="multipart/form-data">

<input type="hidden" name="function" value="picture_bad2">

<input type="text" name="username" value="client">

<input type="text" name="password" value="qwerty">

<input type="text" name="major_id" value="123">

<input type="text" name="minor_id" value="12345">

<input type="submit" value="Send">

</form>

 

 

picture_bad2 POST API function return 0 on success

 

 

picture2 POST API function returns either a line of text separated with | character or a table-represented results, depending on provided parameters

 

Example 7. POST API returned string

 

0|107|44685|0|0|n7hjks

 

 

Format of the string is the following:

 

ResultCode|MajorID|MinorID|Type|Timeout|Text

 

 

Where ResultCode is a mandatory part and all others are optional. All constants can be found in api_consts.inc.php file of PHP API distribution.

 

If you use iMacros, you may want to get results in HTML-formatted table. In this case add the following optional parameter

 

<input type="text" name="print_format" value="table">

 

 

Example 8. Request balance

 

<form

method="post"

action="http://poster.decaptcher.com/"

enctype="multipart/form-data">

<input type="hidden" name="function" value="balance">

<input type="text" name="username" value="client">

<input type="text" name="password" value="qwerty">

<input type="submit" value="Send">

</form>

 

 

For balance function POST API returns a string with current balance

 

Example 9. POST API returned string

 

3.998

 

what the hell are they talking about...and what happened to the simple ip address...now it says api.decaptcher.com...wtf?

Link to post
Share on other sites

Huh? What are you talking about? We have inbuilt support for decaptcher - you don't need to mess with their API.

 

Take a look at beatcaptchas, bypasscaptchas etc etc

 

 

i know there is built in support for decaptcher...but if u have an account u will see that they no longer show the ip address and port...it says api.decaptcher...and i also bought some expensive ass ITT credits since that was built in too and thats not working...im like wtf?? i really need this...im going crazy entering captchas over here

Link to post
Share on other sites

Hm, so the inbuilt support for decaptcher doesn't work at all anymore? :s

 

No, decaptcher and ITT does not have a web form as far as I know, unfortunately. <_<

 

 

ahh this is terrible...if one of u guys need account info to take a look at the problem...let me know...i will gladly provide my acct info...i just need this to work...my whole household is tired of capthcas now...lol

Link to post
Share on other sites
  • 3 weeks later...

Login to decaptcha account.

 

Click home and u will find port number, use the port number with uBot.

use ur username and password.

use api.decaptcher.com as ip address in ubot.

 

In uBot, select captcha.

Then select decaptcha chose captcha and fill the above info.

Link to post
Share on other sites

Login to decaptcha account.

 

Click home and u will find port number, use the port number with uBot.

use ur username and password.

use api.decaptcher.com as ip address in ubot.

 

In uBot, select captcha.

Then select decaptcha chose captcha and fill the above info.

 

I am having a high success rate with beatcaptchas and the subwindow interface bot built buy crazyflx - search forum by thread titles only - beatcaptcha. However; higher success rate comes at the expense of speed its taking nearly 1 minute per site to play all the games and build in all the logic it takes to make these fly - and even then its 70% success with the flawed logic.

 

Im truly hoping a compiled bot app will be faster than the studio app. not sure if its IE or what - but iMacros does a near identical process [ minus if/then logic ] in firefox - 30% faster.

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...