PHP Script VIP Liker - Autolike Sadap V.6

What Is OCR ?

OCR (optical character recognition) is the recognition of printed or written text characters by a computer. This involves photoscanning of the text character-by-character, analysis of the scanned-in image, and then translation of the character image into character codes, such as ASCII, commonly used in data processing.



What Is Captcha ?

a program or system intended to distinguish human from machine input, typically as a way of thwarting spam and automated extraction of data from websites.



What Is Sadap ?

Sadap Is Project Of Bypassing Captcha With OCR (optical character recognition) , The Function Ocr Is Read A Simple Captcha To Convert Into Text And The Text Can Post Into The Website To Slove A Capctcha



OCR API

http://pendekar.ws/ocr-api.php

REQUEST WITH GET

http://pendekar.ws/ocr-api.php?img=

Example

http://pendekar.ws/ocr-api.phpimg=http://web.com/include/image/captcha.php

PHP Tutorial

<?php
$api = "http://pendekar.ws/ocr-api.phpimg=";
function getCaptcha($urlcaptca)
{
$ch = curl_init($urlcaptcha);
curl_setopt($ch,CURLOPT_COOKIEJAR,'cookie.txt');
curl_setopt($ch,CURLOPT_COOKIEFILE,'cookie.txt');
curl_setopt($ch,CURLOPT_FRESH_CONNECT,true);
curl_setopt($ch,CURLOPT_TCP_NODELAY,true);
curl_setopt($ch,CURLOPT_HTTPHEADER,array("REMOTE_ADDR: $random_IP", "HTTP_X_FORWARDED_FOR: $random_IP"));
curl_setopt($ch,CURLOPT_COOKIESESSION,true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_REFERER,$lokasi);
curl_setopt($ch, CURLOPT_USERAGENT,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36');
curl_setopt($ch,CURLOPT_FOLLOWLOCATION,false);
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$y = curl_exec($ch);
$file = 'captcha.png';
$x = fopen($file,"w");
fwrite($x,$y);
fclose($x);
$capcthadir = 'http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/'.$file;
$capctha = file_get_contents($api.$$capcthadir);
curl_close($ch);
return $xa;
}
?>

Download Sadap V.6


2comments:

  1. cara gunakanya gmana??
    ada yg perlu di ubah ngk kodenya?
    cpnelx work ngk..
    maksih....

    ReplyDelete