<?php
    highlight_file
(__FILE__);
    
$FROM_INCLUDE true;
    include(
"flag.php");
    
$msg "";
    if (isset(
$_GET['user']) && isset($_GET['password'])) {
        
$user $_GET['user'];
        
$password $_GET['password'];
        
$check "QNKCDZO";
        
// the md5 of "QNKCDZO" is 0e830400451993494058024219903391

        
if ($user == "admin" && $password != $check && md5($password) == md5($check)) {
            
$msg "Flag: ".$flag;
        } else {
            
$msg "Keep trying!";
        }
    }

    echo 
$msg;
?>