|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
In Tushy Land
Join Date: Oct 2002
Location: Nebraska
Posts: 40,149
|
CAPTCHA Decoders?
Anyone do CAPTCHA decoding software? I'm looking at having something that wrote that will quickly decode and enter the Captcha for me when it is pulled up on a website.
It has to be quick and accurate. Something so all I have to is hit enter when the page loads since the CAPTCHA is the only thing that needs entered on the page. leave your info here if you do this kind of work and references / samples |
|
|
|
|
|
#2 |
|
Pounding Googlebot
Industry Role:
Join Date: Aug 2002
Location: Canada
Posts: 34,500
|
LOL, planning on spamming sites?
WG
__________________
I play with Google. |
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: Sep 2003
Location: Los Begas
Posts: 9,162
|
"yes hello, I'd like to see what types of silencers you sell that would fit my glock"
"oh no particular reason" |
|
|
|
|
|
#5 | |
|
Confirmed User
Industry Role:
Join Date: Oct 2002
Location: Toronto, ON
Posts: 5,247
|
Quote:
![]() ![]()
__________________
ICQ: 91139591 |
|
|
|
|
|
|
#6 |
|
In Tushy Land
Join Date: Oct 2002
Location: Nebraska
Posts: 40,149
|
lol no even close to spamming websites.
|
|
|
|
|
|
#7 |
|
Too lazy to set a custom title
Join Date: Mar 2002
Location: Australia
Posts: 17,393
|
|
|
|
|
|
|
#8 |
|
Confirmed User
Join Date: Mar 2007
Posts: 922
|
wow I definitely rolled my eyes at this one.
__________________
Vote Bill Cosby 2012 |
|
|
|
|
|
#9 |
|
I help you SUCCEED
Industry Role:
Join Date: Nov 2003
Location: The Pearl of the Orient Seas
Posts: 32,195
|
Hit me up on Yahoo IM (lolz)
|
|
|
|
|
|
#10 |
|
Confirmed User
Join Date: Sep 2006
Location: Daytona Beach
Posts: 4,347
|
![]() ![]() ![]() |
|
|
|
|
|
#11 |
|
Geo Cities
Industry Role:
Join Date: Aug 2003
Location: North Captiva Island, Florida USA
Posts: 11,835
|
We have been testing one in a craigslist auto-poster, it's working good, but still needs a few tweaks.
__________________
Make a Free Chaturbate White Label site in 34 minutes and be making money tonight
|
|
|
|
|
|
#12 |
|
In Tushy Land
Join Date: Oct 2002
Location: Nebraska
Posts: 40,149
|
this isn't anything for stealing someones website work, spamming websites or anything like that. Simply filling in the captcha on one page after I make some selections by hand.
|
|
|
|
|
|
#13 |
|
So Fucking Banned
Join Date: May 2006
Posts: 2,187
|
|
|
|
|
|
|
#14 | |
|
rockin tha trailerpark
Industry Role:
Join Date: May 2001
Location: ~Coastal~
Posts: 23,088
|
Quote:
![]()
__________________
__________ Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)
|
|
|
|
|
|
|
#15 |
|
►SouthOfHeaven
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
|
Code:
<?php
class OCR
{
private $im;
function Color($x, $y)
{
if (!is_resource($this->im))
{
return false;
}
extract(imagecolorsforindex($this->im, imagecolorat($this->im, $x, $y)));
$red = base_convert($red, 10, 16);
if (strlen($red) < 2)
{
$red = '0' . $red;
}
$green = base_convert($green, 10, 16);
if (strlen($green) < 2)
{
$green = '0' . $green;
}
$blue = base_convert($blue, 10, 16);
if (strlen($blue) < 2)
{
$blue = '0' . $blue;
}
return strtoupper($red . $green . $blue);
}
function Info($image, $flag = null)
{
list($width, $height, $type) = getimagesize($image);
if (!empty($flag))
{
$flag = strtolower(trim($flag));
if ($flag == 'width')
{
return $width;
}
else if ($flag == 'height')
{
return $height;
}
else if ($flag == 'type')
{
switch ($type)
{
case 1:
return 'gif';
break;
case 2:
return 'jpg';
break;
case 3:
return 'png';
break;
}
}
return false;
}
switch ($type)
{
case 1:
$type = 'gif';
break;
case 2:
$type = 'jpg';
break;
case 3:
$type = 'png';
break;
}
$result = array
(
'width' => $width,
'height' => $height,
'type' => $type
);
return $result;
}
function Read($tag, $image, $background_vector = 'FFFFFF')
{
$image_info = $this->Info($image);
$tag = strtolower($tag);
if (!is_dir('OCR/' . $tag . '/'))
{
return false;
}
$characters = array();
$handle = opendir('OCR/' . $tag . '/patterns/');
while (($file = readdir($handle)) !== false)
{
if (($file != '.') && ($file != '..'))
{
if (!is_dir('OCR/' . $tag . '/patterns/' . $file))
{
$file = str_replace('.ocr', '', $file);
$characters[$file] = $file;
}
}
}
closedir($handle);
$ignore_hash = '';
if (!empty($background_vector))
{
if (strlen($background_vector) == 6)
{
$ignore_hash = md5(str_repeat($background_vector, $image_info['height']));
}
else
{
$ignore_hash = md5($background_vector);
}
}
if ($image_info['type'] == 'gif')
{
$this->im = imagecreatefromgif($image);
}
else if ($image_info['type'] == 'jpg')
{
$this->im = imagecreatefromjpeg($image);
}
else if ($image_info['type'] == 'png')
{
$this->im = imagecreatefrompng($image);
}
$test = array();
$column = 0;
$candidates = array();
$result = '';
for ($i = 0; $i < $image_info['width']; $i++)
{
$test[$column] = '';
for ($j = 0; $j < $image_info['height']; $j++)
{
$test[$column] .= $this->Color($i, $j);
}
$test[$column] = md5($test[$column]);
if ($test[$column] == $ignore_hash)
{
$test = array();
$column = 0;
}
else
{
if (empty($candidates[$i - $column]))
{
foreach ($characters as $character)
{
$pattern = unserialize(file_get_contents('OCR/' . $tag . '/patterns/' . $character . '.ocr'));
if ($test[$column] == $pattern[$column])
{
$candidates[$i - $column][] = $character;
}
}
}
else
{
foreach ($candidates[$i - $column] as $character)
{
$pattern = unserialize(file_get_contents('OCR/' . $tag . '/patterns/' . $character . '.ocr'));
if ($test[$column] != $pattern[$column])
{
$key = array_search($character, $candidates[$i - $column]);
unset($candidates[$i - $column][$key]);
}
}
}
if (count($candidates[$i - $column]) == 1)
{
$candidates[$i - $column] = array_values($candidates[$i - $column]);
$result .= $candidates[$i - $column][0];
$character_width = $this->Info('OCR/' . $tag . '/source/' . $candidates[$i - $column][0] . '.' . $image_info['type'], 'width');
$i = $i - $column + $character_width - 1;
$column = 0;
}
else
{
$column++;
}
}
}
return $result;
}
function Train($tag, $character, $image)
{
if (!file_exists($image))
{
return false;
}
else
{
$image_info = $this->Info($image);
}
$tag = strtolower($tag);
if (!is_dir('OCR/' . $tag . '/'))
{
mkdir('OCR/' . $tag . '/');
}
if (!is_dir('OCR/' . $tag . '/source/'))
{
mkdir('OCR/' . $tag . '/source/');
}
if (file_exists('OCR/' . $tag . '/source/' . $character . '.' . $image_info['type']))
{
@unlink('OCR/' . $tag . '/source/' . $character . '.' . $image_info['type']);
}
@copy($image, 'OCR/' . $tag . '/source/' . $character . '.' . $image_info['type']);
$image = 'OCR/' . $tag . '/source/' . $character . '.' . $image_info['type'];
if ($image_info['type'] == 'gif')
{
$this->im = imagecreatefromgif($image);
}
else if ($image_info['type'] == 'jpg')
{
$this->im = imagecreatefromjpeg($image);
}
else if ($image_info['type'] == 'png')
{
$this->im = imagecreatefrompng($image);
}
$result = array();
for ($i = 0; $i < $image_info['width']; $i++)
{
$result[$i] = '';
for ($j = 0; $j < $image_info['height']; $j++)
{
$result[$i] .= $this->Color($i, $j);
}
$result[$i] = md5($result[$i]);
}
if (!is_dir('OCR/' . $tag . '/patterns/'))
{
mkdir('OCR/' . $tag . '/patterns/');
}
if (file_exists('OCR/' . $tag . '/patterns/' . $character . '.ocr'))
{
@unlink('OCR/' . $tag . '/patterns/' . $character . '.ocr');
}
$handle = @fopen('OCR/' . $tag . '/patterns/' . $character . '.ocr', 'wb');
flock($handle, LOCK_EX);
fwrite($handle, serialize($result));
flock($handle, LOCK_UN);
fclose($handle);
}
}
?>
__________________
hatisblack at yahoo.com |
|
|
|
|
|
#16 |
|
Geo Cities
Industry Role:
Join Date: Aug 2003
Location: North Captiva Island, Florida USA
Posts: 11,835
|
__________________
Make a Free Chaturbate White Label site in 34 minutes and be making money tonight
|
|
|
|
|
|
#17 |
|
So Fucking Banned
Industry Role:
Join Date: Apr 2001
Location: the beach, SoCal
Posts: 107,089
|
So, how many of you would buy a copy of a script that did that if it were made available?
Just wondering. |
|
|
|
|
|
#18 |
|
Pounding Googlebot
Industry Role:
Join Date: Aug 2002
Location: Canada
Posts: 34,500
|
Everyone who posted your gonna spam with it.
WG
__________________
I play with Google. |
|
|
|
|
|
#19 |
|
Confirmed User
Join Date: Dec 2005
Posts: 1,261
|
try this team: http://www.ocr-research.org.ua/
|
|
|
|
|
|
#20 |
|
Confirmed User
Join Date: Aug 2006
Location: Iran
Posts: 639
|
now listen to me:
no one puts up a captcha for no reason on his forms/pages. don't think we are all stupid. either you post a link of where you want it or you go down as a spammer in this board's history.
__________________
http://www.muslimmatrimonial.com/ |
|
|
|
|
|
#21 | |
|
►SouthOfHeaven
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
|
Quote:
actually its a serious issue.. ( blind people and captcha's ) many sites now offer audio "captchas"
__________________
hatisblack at yahoo.com |
|
|
|
|
|
|
#22 |
|
Confirmed User
Join Date: May 2004
Location: 4 8 15 16 23 42
Posts: 4,444
|
Depending on what you need the captchas entered for, you could go the visitor incentived way, too. Easy example: A proxy site that requires a captcha before the visitor can surf to the site of his choice...so you basically let others manually enter the captchas you need to be entered...
|
|
|
|
|
|
#23 |
|
Confirmed User
Join Date: Aug 2006
Location: Iran
Posts: 639
|
so why not post a link?
__________________
http://www.muslimmatrimonial.com/ |
|
|
|
|
|
#25 |
|
So Fucking Banned
Industry Role:
Join Date: Apr 2001
Location: the beach, SoCal
Posts: 107,089
|
|
|
|
|
|
|
#26 |
|
In Tushy Land
Join Date: Oct 2002
Location: Nebraska
Posts: 40,149
|
Umm because why would I want 10 other people jumping and doing the same thing. A few people know about it, and I have already talked to them about the project.
For everyone that thinks this is spam, sorry but it isn't just like I have mentioned before. |
|
|
|
|
|
#27 |
|
Geo Cities
Industry Role:
Join Date: Aug 2003
Location: North Captiva Island, Florida USA
Posts: 11,835
|
It's about the competition baby
__________________
Make a Free Chaturbate White Label site in 34 minutes and be making money tonight
|
|
|
|
|
|
#28 |
|
Geo Cities
Industry Role:
Join Date: Aug 2003
Location: North Captiva Island, Florida USA
Posts: 11,835
|
It's about the competition baby
Two many sheep here ![]()
__________________
Make a Free Chaturbate White Label site in 34 minutes and be making money tonight
|
|
|
|