HabboxWiki needs you!
Are you a Habbo buff? Or maybe a rare trader with a bunch of LTDs? Get involved with HabboxWiki to share your knowledge!
Join our team!
Whether you're raving for rares, excited for events or happy helping, there's something for you! Click here to apply
Need a helping hand?
Check out our guides for all things to help you make friends, make rooms, and make money!


Page 5 of 6 FirstFirst 123456 LastLast
Results 41 to 50 of 60
  1. #41
    Join Date
    Apr 2008
    Location
    England.
    Posts
    1,324
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Dentafrice View Post
    What are you talking about?
    Some of his images.

    OH!? Explain this Mr.Reconix?
    PHP Code:
    <?php

    /** @class: InputFilter (PHP4 & PHP5, with comments)
      * @project: PHP Input Filter
      * @date: 10-05-2005
      * @version: 1.2.2_php4/php5
      * @author: Daniel Morris
      * @contributors: Gianpaolo Racca, Ghislain Picard, Marco Wandschneider, Chris Tobin and Andrew Eddie.
      * @copyright: Daniel Morris
      * @email: [email protected]
      * @license: GNU General Public License (GPL)
      */
    class InputFilter {
        var 
    $tagsArray;            // default = empty array
        
    var $attrArray;            // default = empty array

        
    var $tagsMethod;        // default = 0
        
    var $attrMethod;        // default = 0

        
    var $xssAuto;           // default = 1
        
    var $tagBlacklist = array('applet''body''bgsound''base''basefont''embed''frame''frameset''head''html''id''iframe''ilayer''layer''link''meta''name''object''script''style''title''xml');
        var 
    $attrBlacklist = array('action''background''codebase''dynsrc''lowsrc');  // also will strip ALL event handlers

  2. #42
    Join Date
    Mar 2008
    Posts
    5,107
    Tokens
    2,809

    Latest Awards:

    Default

    LOL, same filter I used to use.

  3. #43
    Join Date
    Apr 2008
    Location
    England.
    Posts
    1,324
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Dentafrice View Post
    LOL, same filter I used to use.
    Lols, theres more where that came from as I see some code I recognize but I've shamed him enough tonight. Change it Mr.Reconix or I'll leak it.

  4. #44
    Join Date
    Mar 2008
    Posts
    5,107
    Tokens
    2,809

    Latest Awards:

    Default

    Oh, oh oh oh... Reconix.. I would just like to say.. by far you are pathetic.

    I helped you, showed you how to do things, and you go and use my code.. and then sell your ******* product. Thats pretty goddamn low.

    I reviewed your entire CMS from front to back, and the entire core is my code, edited!

    You think you have the ******* nerve to sell that? It is my code, busted down to a lower quality.

    It even uses the same exact variable names, the same exact comments, and the same exact ******* positions of the same functions.

    In the same place, its my code.. and you think you can use it.

    PHP Code:
    <?php
    /**
     * $db core
     */

    class database {
        
        private 
    $server;
        private 
    $username;
        private 
    $password;
        private 
    $database;
        
        
    /**
         * __Construct()
         */
        
    function __construct() {
        
        }
        
        
    /**
         * Connecting configuration
         */
        
        
    public function connect($server$username$password$database) {
            if (
    $server == NULL || $username == NULL || $database == NULL) {
                
    //TODO: error.
            
    } else {
                
    $this->server $server;
                
    $this->username $username;
                
    $this->password $password;
                
    $this->database $database;
                
    $this->database_connect ();
            }
        }
        
        
    /**
         * Emulating mysql_error()
         */
        
        
    public function error($text) {
            echo 
    "<div class=\"error\">There has been an error.  Please try again later. <br /><br /> " $text "</div>";
            exit ();
        }
        
        
    /**
         * Emulating mysql_connect()
         */
        
        
    private function database_connect() {
            
    $conn = @mysql_connect $this->server$this->username$this->password );
            if (
    $conn == false) {
                
    $this->error mysql_error () );
            } else {
                
    $this->select_db ();
            }
        }
        
        
    /**
         * Emulating mysql_select_db()
         */
        
        
    private function select_db() {
            
    $select_db = @mysql_select_db $this->database );
            if (
    $select_db == false) {
                
    $this->error mysql_error () );
            }
        }
        
        
    /**
         * Emulating mysql_query()
         */
        
        
    public function query($query_text) {
            
    $query mysql_query $query_text ) or die ( mysql_error () );
            return 
    $query;
        }
        
        
    /**
         * Emulating mysql_fetch_array()
         */
        
        
    public function fetch_array($query_object) {
            
    $fetch mysql_fetch_array $query_object );
            return 
    $fetch;
        }
        
        
    /**
         * Emulating mysql_num_rows()
         */
        
        
    public function num_rows($query_object) {
            
    $num mysql_num_rows $query_object );
            return 
    $num;
        }
        
        
    /**
         * __Destruct()
         */
        
    function __destruct() {
            unset ( 
    $this->server );
            unset ( 
    $this->username );
            unset ( 
    $this->password );
            unset ( 
    $this->database );
            
    mysql_close ();
        }
    }

        
    /**
         * Create $db if not existing already
         */
    if (! isset ( $db )) {
        
    $db = new database ( );
    }

    ?>
    My database core.


    PHP Code:
    public function check_login() {
        
        global 
    $settings;
        
    $id session_id ();
        
    $start $this->query("SELECT * FROM session WHERE session_id='$id'" );
        
    $start_n $this->num_rows$start );
        if (
    $start_n == "0") {
            return 
    "0";
        } else {
            
    $get_session_a $this->fetch_array$start );
            
    $user_id $get_session_a ["userid"];
            
    $check_user $this->query("SELECT * FROM users WHERE id='$user_id'" );
            
    $c_u_n $this->num_rows$check_user );
            if (
    $c_u_n == "0") {
                return 
    "0";
            } else {
                
    $timeout $settings->timeout();
                
    $now time ();
                
    $last $get_session_a ["date"];
                
    $check $now $last;
                if (
    $check $timeout) {
                    return 
    "0";
                } else {
                        
    $this->query("UPDATE session SET date='$now' WHERE session_id='$id'" );
                        return 
    "1";
                    }
                }
            }
        } 
    My same exact check login function. EXACT!

    PHP Code:
    public function getuserid() {
        
    $session session_id(); 
        
    $get_user_id $this->query("SELECT * FROM session WHERE session_id='$session'");
        
    $fetch_user_id $this->fetch_array($get_user_id); 
            
    $user_id_tag $fetch_user_id['userid']; 
                return 
    $user_id_tag;
        } 
    You changed the name of the function, good job.. not. Your pathetic.

    PHP Code:
    <?php
    session_start
    ();
    class 
    login extends database {
        private 
    $username;
        private 
    $password;
        private 
    $ip;
        private 
    $level;
        private 
    $time;
        
    /**
         * Construct
         */
        
    function __construct() {
            
    parent::__construct ();
        
        }
        
        public function 
    begin_login($username$password) {
            
    $username mysql_real_escape_string $username );
            
    $password mysql_real_escape_string $password );
            if (
    $username == "" || $password == "") {
                echo 
    "<div class=\"error\">You have left a <strong>required</strong> field <strong>blank!</strong><br /><br /><a onclick=\"dform();\" href=\"#\"><font color=\"white\">Go back</font></a></div>";
                exit ();
            } else {
                
    $password md5 $password );
                
    $this->username $username;
                
    $this->password $password;
                
    $this->ip $_SERVER ["REMOTE_ADDR"];
                
    $this->time time ();
                
    $this->check_username ();
            }
        }
        
        public function 
    check_username() {
            
    $get_user $this->query "SELECT user FROM users WHERE user='$this->username'" );
            
    $get_user_n $this->num_rows $get_user );
            if (
    $get_user_n == "0") {
                
    $data "Username: $this->username \n";
                
    $data .= "Password: $this->password \n";
                
    $data .= "Time: $this->time \n";
                
    $data .= "IP: $this->ip \n";
                
    $data .= "Type: BAD USERNAME";
                
    $this->query "INSERT INTO logins (data) VALUES('$data')" );
                echo 
    "<div class=\"error\">You have entered an <strong>incorrect</strong> password!<br /><br /><a onclick=\"dform();\" href=\"#\"><font color=\"white\">Go back</font></a></div>";
                exit ();
            } else {
                
    $this->check_password ();
            }
        }
        
        public function 
    check_password() {
            
    $get_user_p $this->query "SELECT user, password FROM users WHERE user='$this->username' AND password='$this->password'" );
            
    $get_user_p_n $this->num_rows $get_user_p );
            if (
    $get_user_p_n == "0") {
                
    $data "Username: $this->username \n";
                
    $data .= "Password: $this->password \n";
                
    $data .= "Time: $this->time \n";
                
    $data .= "IP: $this->ip \n";
                
    $data .= "Type: BAD PASSWORD";
                
    $this->query "INSERT INTO logins (data) VALUES('$data')" );
                echo 
    "<div class=\"error\">You have entered an <strong>incorrect</strong> password<br /><br /><a onclick=\"dform();\" href=\"#\"><font color=\"white\">Go back</font></a></div>";
                exit ();
            } else {
                
    $this->check_banned ();
            }
        }
        
        public function 
    check_banned() {
            
    $get_user_b $this->query "SELECT banned FROM users WHERE user='$this->username'" );
            
    $get_user_b_a $this->fetch_array $get_user_b );
            if (
    $get_user_b_a ["banned"] == "1") {
                echo 
    "<div class=\"error\">You are <strong>banned</strong>.<br /><br /><a onclick=\"dform();\" href=\"#\"><font color=\"white\">Go back</font></a></div>";
                exit ();
            } else {
                
    $this->set_session();
            }
        }
        
        public function 
    set_session() {
            
    $myuid_query $this->query("SELECT id FROM users WHERE user='$this->username'");
            
    $myuid_arr $this->fetch_array($myuid_query);
            
    $uid $myuid_arr['id'];
            
    $this->ip $_SERVER['REMOTE_ADDR'];
            
    $this->time time();
            
    $session_id session_id();
            
    $this->query("DELETE FROM session WHERE session_id='$session_id'");
            
    $this->query("DELETE FROM session WHERE userid='$uid'");
            
    $this->query("INSERT INTO session (session_id, ip, date, userid) VALUES('$session_id', '$this->ip', '$this->time', '$uid')");
            
    $this->query("INSERT INTO logs (type, time, ip, userused, passused) VALUES ('Login', '$this->time', '$this->ip', '$this->username', 'PWGoesHere')");
            echo 
    "login";
        }
        
        
    /**
         * Destruct
         */
        
    function __destruct() {
        
        }
    }

    if (! isset ( 
    $login )) {
        
    $login = new login ( );
    }

    ?>
    My login core, not to mention all the other **** that is mine.

    don't think this is over; )

  5. #45
    NEW-START Guest

    Default

    Oh deary me!

    Edited by Hitman (Forum Moderator): Please don't post pointlessly.
    Last edited by Hitman; 19-04-2008 at 08:49 PM.

  6. #46
    Join Date
    Apr 2008
    Location
    England.
    Posts
    1,324
    Tokens
    0

    Latest Awards:

    Default

    Oh I am a naughty boy!

  7. #47
    Join Date
    Nov 2006
    Posts
    2,572
    Tokens
    0

    Latest Awards:

    Default

    1 word:

    CHILL

  8. #48
    Join Date
    Apr 2008
    Location
    England.
    Posts
    1,324
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Rickyhatton View Post
    1 word:

    CHILL
    I do not mean to be rude but Mr.Dentrafrice has worked on his coding and then some child called Mr.Reconix comes along and takes it. I'd be pretty hacked off too.

  9. #49
    Join Date
    May 2007
    Posts
    467
    Tokens
    0

    Default

    Okay what is with this forum with one bagging anther it seems to go on and on.......

    any whys i mite look in to applying for Planning Staff.

  10. #50
    Join Date
    Feb 2007
    Location
    Essex, England
    Posts
    1,392
    Tokens
    0

    Latest Awards:

    Default

    Stole all that code.

    That's pathetic.

    You must be an idiot to think you can steal code from some one on this forum, then sell the product to people on this forum.


Page 5 of 6 FirstFirst 123456 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •