PHP Paket Database

Results 1 to 12 of 12
  1. #1
    Apprentice P31 is offline
    MemberRank
    Jun 2007 Join Date
    15Posts

    PHP Paket Database

    Hello Ragezone,
    I'm working on my FuckSulake Project now more than 3 Months.
    FuckSulake is a Website where you can find all my Habbo Related Projects!
    Currently there is:
    -Habbo v1 Server (Rebbo Server, RealBasic [Linux, Windows and Mac OS])
    -Habbo MobilesDisco Server (Rebbo Server, RealBasic [Linux,Windows and Mac OS])
    -FSHE Engine (FuckSulake Habbo Environment Engine, RealBasic [Linux, Windows and Mac OS])
    -HPS (Habbo Pakets SQLDB, PHP and SQL)

    Now back to the PHP Paket Database (HPS):
    It's a PHP and SQL Based Paket Database Script that can help Developers to write the Habbo Protocol Down and Programm it then. The System has the Following Features:

    ACP:
    -Categories
    ->Add
    ->Delete
    -Pakets
    ->Add
    ->Edit
    ->Delete

    Other:
    -You can view Pakets
    -You can Search Pakets in Paket Categories

    I hope i will help some People =P

    You can use this System Local (e.g. xampp) or on you Webhost!
    Design Copied from Habbo v1

    -P31

    Edit://

    I've forgot the Downloadlink:

    Project Page:
    http://fuck-sulake.info

    Download Link(Direct):
    http://download.script3d.net/Rebbo/HPS.rar


  2. #2

    Re: PHP Paket Database

    Oh yeah you released this on another forum, still nice. I plan on using it for my developments, its a good way to keep track of whats what I might try and re-code it into a GUI app in C# just to fiddle with GUI and MySQL on C# anyways thanks a lot.

    - Synx

  3. #3
    Apprentice P31 is offline
    MemberRank
    Jun 2007 Join Date
    15Posts

    Re: PHP Paket Database

    I Released it on hybridcore, or?
    ^^ I hope it will get very populary :P

  4. #4
    Account Upgraded | Title Enabled! !Kevin! is offline
    MemberRank
    Dec 2008 Join Date
    544Posts

    Re: PHP Paket Database

    Good job and nice project name Hopefully sulake doesnt see that XD

  5. #5
    Apprentice P31 is offline
    MemberRank
    Jun 2007 Join Date
    15Posts

    Re: PHP Paket Database

    LoL
    What will Sulake do? ^.^
    They can abuse me... I host in Russia ^^

  6. #6
    *lurks* WJJ is offline
    MemberRank
    May 2007 Join Date
    United KingdomLocation
    1,589Posts

    Re: PHP Paket Database

    Wow.

    First server that runs on linux. (i think, do correct me if im wrong.)

    Good Job.

    Will

  7. #7
    Apprentice P31 is offline
    MemberRank
    Jun 2007 Join Date
    15Posts

    Re: PHP Paket Database

    @lost_witness:

    That was the first Server that runs on Linux..
    But after i Programmed this Server Nillus Started on Project "Blunk".
    So this isn't the only Server that runs on Linux ^.^

    @Monsta.:

    If you don't like it don't use it. ^.^

  8. #8

    Re: PHP Paket Database

    Quote Originally Posted by P31 View Post
    @lost_witness:

    That was the first Server that runs on Linux..
    But after i Programmed this Server Nillus Started on Project "Blunk".
    So this isn't the only Server that runs on Linux ^.^

    @Monsta.:

    If you don't like it don't use it. ^.^
    Nillus has been working on Blunk for months.

  9. #9
    Account Upgraded | Title Enabled! Pure is offline
    MemberRank
    May 2008 Join Date
    809Posts

    Re: PHP Paket Database

    You'll need to make some upgrades: such as using posts instead of gets.
    PHP Code:
    } elseif ($_GET['acp_action'] == "chgpass") {
            if (
    $_GET['do'] != 1) {
                echo 
    '<form action="index.php" method="GET">
                <input type="hidden" name="acp_action" value="chgpass">
                New Password:<input type="password" name="np">
                <input type="hidden" name="do" value="1">
                <br><input type="submit" value="Change"></form>'
    ;
            } else {
                
    mysql_query("UPDATE `login` SET `Password` = '" $_GET['np'] . "' WHERE `Username` = '" $_SESSION['user'] . "'");
                echo 
    "Password Changed!";
            }
        } 
    Maybe you should sha1 the password?
    EDIT: or even try this

    PHP Code:
    <?
    $password 
    $_POST['np'];
    if(!empty(
    $password)){
     (
    sha1(md5($password))); // Double encrypt the password, havent tryed it before, just a trail tbh.
    }
    ?>

  10. #10
    The Omega Superfun is offline
    MemberRank
    Dec 2006 Join Date
    The NetherlandsLocation
    5,223Posts

    Re: PHP Paket Database

    Quote Originally Posted by iJames View Post
    You'll need to make some upgrades: such as using posts instead of gets.
    POST can just as easy being ripped as GET

  11. #11
    Account Upgraded | Title Enabled! Pure is offline
    MemberRank
    May 2008 Join Date
    809Posts

    Re: PHP Paket Database

    Quote Originally Posted by Superfun View Post
    POST can just as easy being ripped as GET
    Yet gets are clearly visible, to the url, and can be changed. i still stand by the encryption.

    EDIT:
    I was just testing some encryptions
    PHP Code:

        
    (sha1(md5(sha1(md5(sha1($tmp)))))); 
    LOVE IT
    EDIT 2:
    Why not try an un-decryptable one:
    PHP Code:
    <?
    $password 
    $_POST['np'];
    if(!empty(
    $password)){
    $pw_2 = (sha1(md5(sha1(md5(sha1($password)))))); 
    $pw hash("sha512"$pw_2);
    echo 
    $pw
    }
    ?>
    If anyone can decrypt this i will pay them 100000000000000000000000000000000000000 pounds.
    Code:
    1e0fafcf6ef01341decb23297d0d3b359be76112f06adc7261897ddba1d496c2a70cc8b37bfb57497287d07ca85ddba54df168c16866d03bb9f0dc45afd0ec8d

  12. #12
    Occasional Visitor Cecer is offline
    MemberRank
    Aug 2006 Join Date
    EnglandLocation
    743Posts

    Re: PHP Paket Database

    It says "hello"


    EDIT: Woops, this is kind of spam... QUICK ADD DECENT RESPONCE!
    Intresting idea, I won't be using it but still.

    :/



Advertisement