One url to image, few results
- by Misiur
Hi!
I'm trying to show programmers that some captchas are too weak, and i'm breaking them. Now i've got something like this:
Function:
<?php
function cbreak($image)
{
$info = getimagesize($image);
$width = $info[0];
$height = $info[1];
$img = imagecreatefromgif($image);
$map = array();
for($y=0; $y<$height; $y++)
{
for($x=0;…