Captcha Crack Apileri
-
Yeni bir site keşvettim forumları auto poster atanların kullandıqı sitelerden bitanesi .
http://decaptcher.com
DeCaptcher API:
C (32 bits) downloadPHP (all platforms) downloadJava (all platforms) downloadC# (Windows, 32 bits) downloadC# (Windows, 64 bits) downloadPerl (Linux, native) downloadPerl (Windows, 32 bits) downloadVisual Basic 6 (Windows, 32 bits) downloadVB.NET (Windows, 32 bits) downloadVB.NET (Windows, 64 bits) downloadDelphi (Windows, 32 bits) downloadDLL sources (Windows, 32 bits) downloadDLL sources (Windows, 64 bits) downloadSO sources (Unix, 32 bits) downloadDeCaptcher API tools:
Command line API (Windows) downloadPlugins:
EZGmail plugin downloadEasy Adder - Myspace Friend Adder plugin download
Açıklama:
ntroduction
DeCaptcher provides possibility to communicate with all types of clients' systems through any of the following interfaces:
- API for programming languages
- shared libraries
- HTTP requests
API for the DeCaptcher is availablve with the following languages:
- C (both *nix and Windows)
- PHP (both *nix and Windows)
- Visual Basic 6.0 (Windows)
- C# (Windows)
- Visual Basic 6 (Windows)
- VB.NET (Windows)
- Delphi (Windows)
- Perl (both *nix and Windows)
Also API is encapsulated within two libraries that can be used too:
- DLL (Windows)
- SO (*nix)
Also, if you do not want to meddle with coding you can use HTTP POST request to communicate with the service. POST interface has full functionality without any restrictions or limitations.
How to use API for programming language?
All APIs are distributed in source codes. In order to use API you need to copy API sources file to your project and put API calls to your source code.
How to use API in shared libraries?
Shared libraries are distributed along with source codes. If you want to use shared library in your project compile shared library (or use already compiled, located in distribution) and call API functions within it according to your programming language rules.
How to use API via HTTP requests?
Make POST requests to deliver picture and get text answer, query for balance or claim picture as badly recognized.
How to organize picture recognition process?
For starters, session must be opened to send pictures and get text results. After session is started pictures can be sent in cycle. On successfull picture's acceptance unique ID (consists of 2 parts, Major ID and Minor ID) is assigned. Any picture can be claimed as badly recognized by this pair of IDs. When you are done, close the session. API is quite simple and consists of 6 functions only:- initialization function - performs preparation of API's internal structures.
- login function - performs logging in.
- picture delivery function
- picture apply result (optional)
- query for balance (optional)
- session close function
Pseudo-code
Several versions of workflow can be easily imagined, something like this:
Example 1. Several pictures in one session1. 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 session1. 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 string0|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 stringUmarı yardımcı oLur .
-
teşekkürler hocam,captchakiller kapandıktan sonra bende yeni bir şeyler arıyordum.
-
rica ederim
