fork download
  1. <?php
  2. define('SECRET_CONST', true);
  3. if(empty($_POST) AND $_SESSION['logged_in'] !== true)
  4. die("Aby się zalogować musisz podać poprawne dane!");
  5. include 'db.php';
  6. for($i = 0; $i < count($db) AND $_SESSION['logged_in'] !== true; ++$i)
  7. {
  8. if($db[$i]['user'] == @$_POST["user"] AND $db[$i]['passwd'] == hash('sha256', @$_POST['passwd']))
  9. $_SESSION['logged_in'] = true;
  10. } // End for
  11. ?>
  12. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://w...content-available-to-author-only...3.org/TR/html4/strict.dtd">
  13. <html>
  14. <head>
  15. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  16. <title>Logowanie z użyciem plików tekstowych</title>
  17. </head>
  18. <body>
  19. <?php
  20. if($_SESSION['logged_in'] === true)
  21. echo 'Brawo! Masz dostęp do tych danych. :)';
  22. else
  23. echo 'Brak dostępu!';
  24. ?>
  25. </body>
  26. </html>
  27.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty