Robert Cummings wrote:
On Tue, 2007-06-12 at 07:29 -0400, tedd wrote:
At 7:38 PM +0200 6/11/07, Tijnema wrote:
Well, if you think this is the uncrackable* solution, create it and
i'll see if I can crack it ;)
Tijnema
* I hope you don't mean the same uncrackable as AACS did:
"HD-DVD is uncrackable" ;)
As I provided in another post, try cracking this:
http://sperling.com/examples/dot-captcha/
Ummm, there's absolutely nothing to crack...
<?php
$post = 'Submit';
$ch = curl_init( '/examples/dot-captcha/index.php' );
curl_setopt( $ch, CURLOPT_HEADER, 0 );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch, CURLOPT_TIMEOUT, 15 );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $post );
$result = curl_exec( $ch )
?>
The submit image is bigger than the circle, and I'm guessing Tedd is
checking the coords passed through.
-Stut
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php