Me Leaving + My UberCMS Edit

Page 2 of 7 FirstFirst 1234567 LastLast
Results 16 to 30 of 91
  1. #16
    Iron like a Lion in Zion! vLife is offline
    Super ModRank
    Apr 2009 Join Date
    The BahamasLocation
    3,785Posts

    Re: Me Leaving + My UberCMS Edit

    sauce is good, i has no expl0its in mines.
    thnx 4 gud edit.

  2. #17
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

    Re: Me Leaving + My UberCMS Edit

    Ciao.

  3. #18
    Valued Member RivRawr is offline
    MemberRank
    Sep 2009 Join Date
    California, USLocation
    120Posts

    Re: Me Leaving + My UberCMS Edit

    goodbye :(

    Although we never Talked, you helped me so much on my retro and i thank you, you are a big help to the community and it's sad to see you leave. Thank you for the new and last release it looks pretty sexy if you ask me :) I hope to see you come back.

    Later -River.

  4. #19
    Thanks for a great time! siem212212 is offline
    MemberRank
    Jun 2009 Join Date
    NetherlandsLocation
    958Posts

    Re: Me Leaving + My UberCMS Edit

    I hope you still visit sometimes ( monthly base maybe :3? ) Well you probaly dont know me, but happy holidays and the best wishes (:

  5. #20
    Alpha Member zMagenta is offline
    MemberRank
    Jun 2011 Join Date
    1,860Posts

    Re: Me Leaving + My UberCMS Edit

    Well, I've fixed my childish mistakes in the register.php, so I'll re upload the CMS with the finished register included. Once this has uploaded, I'll edit the original thread and post the download link. The reason for the re-uploading of the CMS was a couple of exploits in the register.php.. Thanks to Matthew for telling me this. Greatly appreciated. I'll also just check ragezone every couple of days, doesn't mean I'm back.

    So here is the new download link; UberCMS [Un-Exploitable].rar

    That has also changed in the original thread. Thanks for all your wishes and marry Christmas to all of you.
    Last edited by zMagenta; 09-12-11 at 05:08 PM.

  6. #21
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

    Re: Me Leaving + My UberCMS Edit

    You could just do $name = mysql_real_escape_string($_POST['user']);
    :D

  7. #22
    Alpha Member zMagenta is offline
    MemberRank
    Jun 2011 Join Date
    1,860Posts

    Re: Me Leaving + My UberCMS Edit

    Quote Originally Posted by PowahAlert View Post
    You could just do $name = mysql_real_escape_string($_POST['user']);
    :D
    I could of, but I didn't. Also, my names "</Loophole>" for your signature.

  8. #23
    IT-Developer djboetz is offline
    MemberRank
    Aug 2010 Join Date
    SwedenLocation
    210Posts

    Re: Me Leaving + My UberCMS Edit

    I don't know you much, However, We will miss you <3

  9. #24
    Account Upgraded | Title Enabled! Pookie is offline
    MemberRank
    Mar 2011 Join Date
    1,038Posts

    Re: Me Leaving + My UberCMS Edit

    Quote Originally Posted by </Loophole> View Post
    Well, I've fixed my childish mistakes in the register.php, so I'll re upload the CMS with the finished register included. Once this has uploaded, I'll edit the original thread and post the download link. The reason for the re-uploading of the CMS was a couple of exploits in the register.php.. Thanks to Matthew for telling me this. Greatly appreciated. I'll also just check ragezone every couple of days, doesn't mean I'm back.

    So here is the new download link; UberCMS [Un-Exploitable].rar

    That has also changed in the original thread. Thanks for all your wishes and marry Christmas to all of you.
    Much better.

  10. #25
    Account Upgraded | Title Enabled! Nesar is offline
    MemberRank
    Aug 2011 Join Date
    Anime LandLocation
    748Posts

    Re: Me Leaving + My UberCMS Edit

    Quote Originally Posted by [S]harp View Post
    I could of, but I didn't. Also, my names "</Loophole>" for your signature.
    Thanks for the CMS,I Hope you visit ragezone sometimes soon :)

  11. #26
    sexiess is a sin. Subway is offline
    MemberRank
    Jun 2010 Join Date
    2,491Posts

    Re: Me Leaving + My UberCMS Edit

    He will trust^lol

  12. #27
    凸(ಠ益ಠ)凸 Omnija is offline
    MemberRank
    Jun 2008 Join Date
    QuebecLocation
    2,233Posts

    Re: Me Leaving + My UberCMS Edit

    Quote Originally Posted by [S]harp View Post
    Going to miss you to, but 'ya know, RaGEZONE isn't my lfe.
    Of course Ragezone isn't your life... Habbo is xD

  13. #28
    Alpha Member Twan is offline
    MemberRank
    Jun 2010 Join Date
    1,961Posts

    Re: Me Leaving + My UberCMS Edit

    I want to use this CMS. Does anyone knows a good emulator for this? UberEmulator r63, i can't find it....

  14. #29
    Alpha Member zMagenta is offline
    MemberRank
    Jun 2011 Join Date
    1,860Posts

    Re: Me Leaving + My UberCMS Edit

    Use Phoenix EMU with this. And thanks for all your wishes. But I'm still not coming back. And Habbo is not my life. I want to make more time for my fmaily and friends. My PC is hardly on now. But I will keep RZ as my homepage, so you know when I'm online.

    I hope this is a use to many people. More people will critise the CMS than say good comments. But hay hoe, that's RaGEZONE for you.

  15. #30
    What about no. Davidaap is offline
    MemberRank
    Nov 2009 Join Date
    773Posts

    Re: Me Leaving + My UberCMS Edit

    Quote Originally Posted by Matthew View Post
    This is NOT safe to use. There are still several ways to do a SQL exploit even in the register (register.php).

    PHP Code:
    $name $_POST['bean_avatarName']; 
    Unfiltered post. You can inject anything here and extract anything you wish from the users table as no illegal characters are escaped.

    Fix (VERY simple stuff):

    PHP Code:
    $name filter($_POST['bean_avatarName']); 
    Same problem here, but I've seen you've tried to escape illegal characters using htmlspecialchars() which only escapes HTML characters. htmlspecialchars() will NOT stop a sql injection or escape things like ',x00 ect..

    PHP Code:
            $name htmlspecialchars($_POST['bean_avatarName']);
            
    $password htmlspecialchars($_POST['bean_password']);
            
    $password2 htmlspecialchars($_POST['bean_retypedPassword']);
            
    $email htmlspecialchars($_POST['bean_email']);
            
    $dob_day htmlspecialchars($_POST['bean_day']);
            
    $dob_month htmlspecialchars($_POST['bean_month']);
            
    $dob_year htmlspecialchars($_POST['bean_year']); 
    There's no use in trying to escape html characters. So we'll escape illegal MySQL characters instead:

    PHP Code:
            $name filter($_POST['bean_avatarName']);
            
    $password filter($_POST['bean_password']);
            
    $password2 filter($_POST['bean_retypedPassword']);
            
    $email filter($_POST['bean_email']);
            
    $dob_day filter($_POST['bean_day']);
            
    $dob_month filter($_POST['bean_month']);
            
    $dob_year filter($_POST['bean_year']); 
    So this should work now, and the register page should be secure, as we've escaped any possible bad characters. A proper and real solution would be preparing a query in MySQLi and seeing the POST values as strings. But only a few people will know what I'm on about..

    Anywho, I wouldn't advise using the CMS as it looks like the OP doesn't know much about MySQL injections.
    i told you that exploit, where are my credits DERP
    just joking..

    [S]harp what was your name before, because i cant remember your name lol.



Page 2 of 7 FirstFirst 1234567 LastLast

Advertisement