Re: Going from simple to super CAPTCHA

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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 )

?>

Cheers,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux