Gasiti cuvantul si postati un screenshot cu mesajul de felicitari. Bruteforce Challenge In caz ca are cineva nevoie de sursa, am postat-o mai jos. <html> <head> <title>Bruteforce Challenge</title> </head> <body> <center> <h1>Bruteforce Challenge</h1> <form action="" method="get"> <input type="text" name="cuchi"> <input type="submit" value="Incearca"> </form> <?php if($_GET['cuchi']=="balabuc"){ echo "<div style='color:green;font-weight:bold'>Felicitari! Ai gasit raspunsul.</div>"; }elseif(stristr("balabuc",$_GET['cuchi'])){ echo "<div style='color:green;font-weight:bold'>Esti pe aproape..</div>"; }elseif($_GET['cuchi']!=""){ echo "<div style='color:red;font-weight:bold'>Gresit..</div>"; } ?> </center> </body> </html>