Не знал где поместить тему, решил создать ее в болталке . Итак, есть код 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; } ?> Помогите кто-нить плз