Reg without Captha

Results 1 to 14 of 14
  1. #1
    Apprentice Manar Ahmed is offline
    MemberRank
    May 2012 Join Date
    15Posts

    Reg without Captha

    Reg without Captha Needed please guys ! if some 1 have send me or release it plz !


  2. #2
    Valued Member break is offline
    MemberRank
    May 2012 Join Date
    120Posts

    Re: Reg without Captha

    Quote Originally Posted by Manar Ahmed View Post
    Reg without Captha Needed please guys ! if some 1 have send me or release it plz !
    Before:
    Code:
    include 'Captcha.php';
    After:
    Code:
    //include 'Captcha.php';
    By the way:
    Manar Ahmed = Doublingkal

  3. #3
    Apprentice Manar Ahmed is offline
    MemberRank
    May 2012 Join Date
    15Posts

    Re: Reg without Captha

    loll im not Doubling kal mr shity guy

  4. #4
    Account Upgraded | Title Enabled! spatti88 is offline
    MemberRank
    Mar 2010 Join Date
    Poland ;)Location
    927Posts

    Re: Reg without Captha

    why only egys make more account than 1 ?

    ps; im not racist ..

  5. #5
    Banned Doublingkal is offline
    BannedRank
    May 2012 Join Date
    290Posts

    Re: Reg without Captha

    Spattie88 Please I need Reg without Captha too !
    I mean without Security code

  6. #6
    Banned honors is offline
    BannedRank
    Feb 2012 Join Date
    62Posts

    Re: Reg without Captha

    Quote Originally Posted by Doublingkal View Post
    Spattie88 Please I need Reg without Captha too !
    I mean without Security code
    you want ur db to have 10 tb ?

  7. #7
    Alpha Member DjKrava is offline
    MemberRank
    Apr 2008 Join Date
    SlovenijaLocation
    2,087Posts

    Re: Reg without Captha

    honors is right lol... with out capatche your db will be full off accs in no time.

  8. #8
    Banned Doublingkal is offline
    BannedRank
    May 2012 Join Date
    290Posts

    Re: Reg without Captha

    capatche not works in my account understood ? See Account Registration

  9. #9

    Re: Reg without Captha

    jop, even with a low level captcha you get spammed...See hidden kal...they had the low level captcha and fightz told me that he got once spammed with, uhm..I think 500k accs.

  10. #10
    Member LorDandMimi is offline
    MemberRank
    Dec 2011 Join Date
    EgyptLocation
    95Posts

    Re: Reg without Captha

    Man its easy to make 1 with ur self i have made my oqn
    Check my edited at destroyers kal only delete all caprch at the index and security code at refisteration.tpl

  11. #11
    Valued Member break is offline
    MemberRank
    May 2012 Join Date
    120Posts

    Re: Reg without Captha

    Last edited by break; 06-06-12 at 02:55 AM.

  12. #12
    Proficient Member EGYDesigner is offline
    MemberRank
    Apr 2012 Join Date
    162Posts

    Re: Reg without Captha

    Quote Originally Posted by spatti88 View Post
    why only egys make more account than 1 ?

    ps; im not racist ..
    not all

  13. #13
    Account Upgraded | Title Enabled! DELUXX is offline
    MemberRank
    Jun 2012 Join Date
    HDDLocation
    293Posts

    Re: Reg without Captha

    You try to use ur register page on a free webhosting mysql ? that will never work
    if no then use the scripts i post



    try my scripts maby will work for you to


    index.php
    PHP Code:
    <?php
    /**
     * Registration handling
     *
     * @author     Claus Jørgensen <thedeathart@gmail.com>
     * @category   Common
     * @package    Kalonline Registration
     * @copyright  Copyright (c) 2006 Claus Jørgensen (http://dragons-lair.org)
     * @license    MIT License
     */

    include 'Password.php'// password class
    include 'Captcha.php';  // captcha class

    session_start(); // required for captcha to work

    // error reporting
    error_reporting(E_ALL);
    ini_set('display_errors','Off');

    // configuration
    $config = array(
        
    'db_username' => 'sa'// database username
        
    'db_password' => '*******',   // database password
        
    'db_dsn'      => 'kal_auth',   // system DSN to the database
        
    'template'    => 'registration.tpl',  // registration template path/filename
        
    'debug'       => false,               // show SQL errors if true
    );

    // HTML error
    define('UI_ERROR','<span class="error">%s</span>');

    // if we need to output a captcha
    if(isset($_GET['captcha'])) {
        
    $captcha = new Captcha(120,40,6);
    }

    // if submitted
    if(strtolower($_SERVER['REQUEST_METHOD']) == 'post') {
        
    $username $_POST['username'];
        
    $password $_POST['password'];
        
    $captcha  $_POST['captcha'];

        
    $error = array();
        
    // validate username
        
    if(!ctype_alnum($username)) {
            
    $error['username'] = sprintf(UI_ERROR,'Illigal characters in the username');
        }
        
    // validate password
        
    if(!ctype_alnum($password)) {
            
    $error['password'] = sprintf(UI_ERROR,'Illigal characters in the password');
        }
        
    // validate captcha
        
    if($captcha != $_SESSION['captcha']) {
            
    $error['captcha']  = sprintf(UI_ERROR,'Wrong security code');
        }
        
        
    // no errors, continue to username check
        
    if(empty($error)) {
            
    // db connect
            
    $conn odbc_connect($config['db_dsn'],
                                 
    $config['db_username'],
                                 
    $config['db_password']);
            
    // check about account name is taken
            
    $check "SELECT
                          [ID] FROM [Login]
                      WHERE
                          [ID]='%s'
                      OR
                          [ID]='%s'
                      OR
                          [ID]='%s'
                      OR
                          [ID]='%s'
                      "
    ;
            
    $check sprintf($check,$username,
                
    strtolower($username),
                
    strtoupper($username),
                
    ucfirst($username)
            );
            
    $exec odbc_exec($conn,$check);
            
    // check for errors
            
    if(!$exec && ($config['debug'] === true)) {
                echo 
    odbc_errormsg($conn);
                die();
            }
            
    // is the account registered?
            
    $data odbc_fetch_array($exec);
            if(
    $data !== false) {
                
    $error['username'] = sprintf(UI_ERROR,'Account allready registered,
                                                       please choose another name'
    );
            } else { 
    // else continue
                // encode password
                
    $password Password::encode($password);
                
    // prepare sql
                
    $sql "INSERT INTO
                            [Login] ([ID],[PWD],[Birth],[Type],[ExpTime],[Info])
                        VALUES
                            ('"
    .$username."',".$password.",'19190101',0,4000,0)
                        "
    ;
                
    // insert user
                
    $result odbc_exec($conn,$sql);
                if(!
    $result && ($config['debug'] === true)) {
                    echo 
    odbc_errormsg($conn);
                    die();
                }
            }
        }
    }

    // display template
    include $config['template'];

    ?>
    Captcha.php
    PHP Code:
    <?php

    class Captcha 
    {
        private 
    $font 'arial.ttf';

        function 
    generateCode($characters) {
            
    $possible '23456789bcdfghjkmnpqrstvwxyz';
            
    $code '';
            for(
    $i=0;$i<$characters;$i++) {
                
    $code .= substr($possiblemt_rand(0strlen($possible)-1), 1);
            }
            return 
    $code;
        }
        
        function 
    __construct($width='30',$height='20',$characters='6') {
            
    $code $this->generateCode($characters);
            
    $_SESSION['captcha'] = $code;
            
    $font_size $height 0.30;
            
    $image     imagecreate($width$height);
            
    $background_color imagecolorallocate($image19,26,25);
            
    $text_color  imagecolorallocate($image255255255);
            
    $noise_color imagecolorallocate($image19,26,25);
            for(
    $i=0$i<($width*$height)/3;$i++) {
                
    imagefilledellipse($image,mt_rand(0,$width)
                                  ,
    mt_rand(0,$height)
                                  ,
    1,1
                                  
    ,$noise_color);
            }
            for(
    $i=0;$i<($width*$height)/150;$i++) {
                
    imageline($image,mt_rand(0,$width)
                         ,
    mt_rand(0,$height)
                         ,
    mt_rand(0,$width)
                         ,
    mt_rand(0,$height)
                         ,
    $noise_color);
            }
            
    $textbox imagettfbbox($font_size0$this->font$code);
            
    $x = ($width $textbox[4])/2;
            
    $y = ($height $textbox[5])/2;
            
    imagettftext($image$font_size0$x$y$text_color$this->font $code);

            
    header('Content-Type: image/jpeg');
            
    imagejpeg($image);
            
    imagedestroy($image);
        }
    }


    ?>
    Quote Originally Posted by break View Post
    If you wana be a smart ass then show us that you ar

    PHP Code:
    <script LANGUAGE="JavaScript">

    <!--





    function 
    apply()

    {

      
    document.break.sub.disabled=true;

      if(
    document.break.smartass.checked==true)

      {

        
    document.break.sub.disabled=false;

      }

      if(
    document.break.smartass.checked==false)

      {

        
    document.break.sub.enabled=false;

      }

    }



    // -->



    </script> 
    PHP Code:
    <form action="" method="post" id=break name=break>
    <
    input name='smartass' type='checkbox' onclick='apply()'>
    I agree with the <a href="rules.html">Server Rules</a>.


    <
    input type="submit" onclick="return confirmSubmit()" Value="Register" name=sub disabled>
    <
    input type="reset" class="control" value="Reset"
    Last edited by DELUXX; 03-06-12 at 07:43 PM.

  14. #14
    Helper ! xhethx is offline
    MemberRank
    Jun 2010 Join Date
    BahrainLocation
    787Posts

    Re: Reg without Captha

    Quote Originally Posted by Doublingkal View Post
    capatche not works in my account understood ? See Account Registration
    its dont work cuz u the site is not connect to DB !!
    u use webhoster !!!!!!!!! plz use no-ip or anything else



Advertisement