Помогите с кодом PHP

Discussion in 'Болталка' started by Crazy Bastar, 22 Nov 2011.

  1. Crazy Bastar

    Crazy Bastar New Member

    Joined:
    24 Oct 2011
    Messages:
    6
    Likes Received:
    0
    Reputations:
    0
    Не знал где поместить тему, решил создать ее в болталке ;).
    Итак, есть код PHP, нужно добыть аккаунт админа:
    PHP:
    <?PHP  
    error_reporting
    (0);
    require(
    'config.php');
    require(
    'functions.php');
    session_start();
     if(@
    $_GET['logout'] == true)  {
    $_SESSION['logged_in'] = FALSE;
    header("Location: ../index.php?folder=".$_GET['folder']);
    exit; 
     } 
      if(
    $admin_password == '')  {  
        echo 
    '<span style="font-family:Tahoma;font-size:12px"> Please set a password in the configuration file located at <strong>dirLIST_files/config.php</strong>      <br /><br />      This is a necessary security feature to prevent the admin feature in fresh dirLIST installations from being used by unauthorised personal</span>      ';      exit;  }    if(@$_POST['submit'] == 'Login')  {      //This is basic authentication, if you wish, you may setup a MySQL database and use it to store the admin username and password 
              
    if($_POST['username'] == $admin_username && $_POST['password'] == $admin_password)      {          $_SESSION['logged_in'] = TRUE;          header("Location: ../index.php?folder=".$_POST['folder']);          exit;      }      else          $login_error TRUE;  }  ?>
    Помогите кто-нить плз
     
  2. daniel777

    daniel777 Elder - Старейшина

    Joined:
    8 Jul 2010
    Messages:
    517
    Likes Received:
    90
    Reputations:
    37
    Как ты надеешся с помощью этого кода добыть акк админа?
    Или ты имееш доступ к изменению этого кода?
     
  3. Crazy Bastar

    Crazy Bastar New Member

    Joined:
    24 Oct 2011
    Messages:
    6
    Likes Received:
    0
    Reputations:
    0
    Доступа к коду нет. Вот я и хотел узнать, что с ним можно сделать
     
  4. Crazy Bastar

    Crazy Bastar New Member

    Joined:
    24 Oct 2011
    Messages:
    6
    Likes Received:
    0
    Reputations:
    0
    Религия не позволяет :D