3v4l.org

run code in 300+ PHP versions simultaneously
<?php $RANDOM_SALT = rand(); function saltedHash($pass) { global $RANDOM_SALT; return hash("sha512", $pass) + $RANDOM_SALT; } $USERS = [ "user1" => saltedHash("password1"), "user2" => saltedHash("hunter2"), "user3" => saltedHash("fN.4A_zKEe]33p!"), "user4" => saltedHash("xXgjan3a58qzX3"), ]; function checkLogIn($username, $password) { global $USERS; $hashedPassword = saltedHash($password); $expectedPassword = $USERS[$username]; echo " H: $hashedPassword\n E: $expectedPassword\n"; echo "User '$username' has password '$password'? "; if ($hashedPassword === $expectedPassword) { echo "yes\n"; } else { echo "no\n"; } } // ==== TEST CODE: ==== checkLogIn("user1", "phplol"); checkLogIn("user1", "password1"); echo "\n"; checkLogIn("user2", "phplol"); checkLogIn("user2", "hunter2"); echo "\n"; checkLogIn("user3", "phplol"); checkLogIn("user3", "FN4A_zKEe]33p!"); echo "\n"; checkLogIn("user4", "phplol"); checkLogIn("user4", "xXgjan3a58qzX3"); echo "\n"; echo "Now let's get funky!"; checkLogIn("user3", "password1");
Output for 7.1.7
Warning: A non-numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 Warning: A non-numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 2064111718 E: 2064111717 User 'user1' has password 'phplol'? no Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 2064111717 E: 2064111717 User 'user1' has password 'password1'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 2064111718 E: 2064111723 User 'user2' has password 'phplol'? no Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 2064111723 E: 2064111723 User 'user2' has password 'hunter2'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 2064111718 E: 2064111717 User 'user3' has password 'phplol'? no Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 2064111717 E: 2064111717 User 'user3' has password 'FN4A_zKEe]33p!'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 2064111718 E: 2064363025 User 'user4' has password 'phplol'? no Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 2064363025 E: 2064363025 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 2064111717 E: 2064111717 User 'user3' has password 'password1'? yes
Output for 7.1.6
Warning: A non-numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 Warning: A non-numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 590271579 E: 590271578 User 'user1' has password 'phplol'? no Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 590271578 E: 590271578 User 'user1' has password 'password1'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 590271579 E: 590271584 User 'user2' has password 'phplol'? no Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 590271584 E: 590271584 User 'user2' has password 'hunter2'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 590271579 E: 590271578 User 'user3' has password 'phplol'? no Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 590271578 E: 590271578 User 'user3' has password 'FN4A_zKEe]33p!'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 590271579 E: 590522886 User 'user4' has password 'phplol'? no Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 590522886 E: 590522886 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 590271578 E: 590271578 User 'user3' has password 'password1'? yes
Output for 7.1.5
Warning: A non-numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 Warning: A non-numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 872000511 E: 872000510 User 'user1' has password 'phplol'? no Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 872000510 E: 872000510 User 'user1' has password 'password1'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 872000511 E: 872000516 User 'user2' has password 'phplol'? no Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 872000516 E: 872000516 User 'user2' has password 'hunter2'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 872000511 E: 872000510 User 'user3' has password 'phplol'? no Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 872000510 E: 872000510 User 'user3' has password 'FN4A_zKEe]33p!'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 872000511 E: 872251818 User 'user4' has password 'phplol'? no Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 872251818 E: 872251818 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 872000510 E: 872000510 User 'user3' has password 'password1'? yes
Output for 7.1.0
Warning: A non-numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 Warning: A non-numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 312621104 E: 312621103 User 'user1' has password 'phplol'? no Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 312621103 E: 312621103 User 'user1' has password 'password1'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 312621104 E: 312621109 User 'user2' has password 'phplol'? no Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 312621109 E: 312621109 User 'user2' has password 'hunter2'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 312621104 E: 312621103 User 'user3' has password 'phplol'? no Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 312621103 E: 312621103 User 'user3' has password 'FN4A_zKEe]33p!'? yes Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 312621104 E: 312872411 User 'user4' has password 'phplol'? no Notice: A non well formed numeric value encountered in /in/DGME5 on line 6 H: 312872411 E: 312872411 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! Warning: A non-numeric value encountered in /in/DGME5 on line 6 H: 312621103 E: 312621103 User 'user3' has password 'password1'? yes
Output for 7.0.20
H: 552803773 E: 552803772 User 'user1' has password 'phplol'? no H: 552803772 E: 552803772 User 'user1' has password 'password1'? yes H: 552803773 E: 552803778 User 'user2' has password 'phplol'? no H: 552803778 E: 552803778 User 'user2' has password 'hunter2'? yes H: 552803773 E: 552803772 User 'user3' has password 'phplol'? no H: 552803772 E: 552803772 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 552803773 E: 553055080 User 'user4' has password 'phplol'? no H: 553055080 E: 553055080 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 552803772 E: 552803772 User 'user3' has password 'password1'? yes
Output for 7.0.6
H: 2052860941 E: 2052860940 User 'user1' has password 'phplol'? no H: 2052860940 E: 2052860940 User 'user1' has password 'password1'? yes H: 2052860941 E: 2052860946 User 'user2' has password 'phplol'? no H: 2052860946 E: 2052860946 User 'user2' has password 'hunter2'? yes H: 2052860941 E: 2052860940 User 'user3' has password 'phplol'? no H: 2052860940 E: 2052860940 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 2052860941 E: 2053112248 User 'user4' has password 'phplol'? no H: 2053112248 E: 2053112248 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 2052860940 E: 2052860940 User 'user3' has password 'password1'? yes
Output for 7.0.5
H: 1507354074 E: 1507354073 User 'user1' has password 'phplol'? no H: 1507354073 E: 1507354073 User 'user1' has password 'password1'? yes H: 1507354074 E: 1507354079 User 'user2' has password 'phplol'? no H: 1507354079 E: 1507354079 User 'user2' has password 'hunter2'? yes H: 1507354074 E: 1507354073 User 'user3' has password 'phplol'? no H: 1507354073 E: 1507354073 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1507354074 E: 1507605381 User 'user4' has password 'phplol'? no H: 1507605381 E: 1507605381 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1507354073 E: 1507354073 User 'user3' has password 'password1'? yes
Output for 7.0.4
H: 1758786812 E: 1758786811 User 'user1' has password 'phplol'? no H: 1758786811 E: 1758786811 User 'user1' has password 'password1'? yes H: 1758786812 E: 1758786817 User 'user2' has password 'phplol'? no H: 1758786817 E: 1758786817 User 'user2' has password 'hunter2'? yes H: 1758786812 E: 1758786811 User 'user3' has password 'phplol'? no H: 1758786811 E: 1758786811 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1758786812 E: 1759038119 User 'user4' has password 'phplol'? no H: 1759038119 E: 1759038119 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1758786811 E: 1758786811 User 'user3' has password 'password1'? yes
Output for 7.0.3
H: 1593270679 E: 1593270678 User 'user1' has password 'phplol'? no H: 1593270678 E: 1593270678 User 'user1' has password 'password1'? yes H: 1593270679 E: 1593270684 User 'user2' has password 'phplol'? no H: 1593270684 E: 1593270684 User 'user2' has password 'hunter2'? yes H: 1593270679 E: 1593270678 User 'user3' has password 'phplol'? no H: 1593270678 E: 1593270678 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1593270679 E: 1593521986 User 'user4' has password 'phplol'? no H: 1593521986 E: 1593521986 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1593270678 E: 1593270678 User 'user3' has password 'password1'? yes
Output for 7.0.2
H: 197400427 E: 197400426 User 'user1' has password 'phplol'? no H: 197400426 E: 197400426 User 'user1' has password 'password1'? yes H: 197400427 E: 197400432 User 'user2' has password 'phplol'? no H: 197400432 E: 197400432 User 'user2' has password 'hunter2'? yes H: 197400427 E: 197400426 User 'user3' has password 'phplol'? no H: 197400426 E: 197400426 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 197400427 E: 197651734 User 'user4' has password 'phplol'? no H: 197651734 E: 197651734 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 197400426 E: 197400426 User 'user3' has password 'password1'? yes
Output for 7.0.1
H: 141127390 E: 141127389 User 'user1' has password 'phplol'? no H: 141127389 E: 141127389 User 'user1' has password 'password1'? yes H: 141127390 E: 141127395 User 'user2' has password 'phplol'? no H: 141127395 E: 141127395 User 'user2' has password 'hunter2'? yes H: 141127390 E: 141127389 User 'user3' has password 'phplol'? no H: 141127389 E: 141127389 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 141127390 E: 141378697 User 'user4' has password 'phplol'? no H: 141378697 E: 141378697 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 141127389 E: 141127389 User 'user3' has password 'password1'? yes
Output for 7.0.0
H: 116405429 E: 116405428 User 'user1' has password 'phplol'? no H: 116405428 E: 116405428 User 'user1' has password 'password1'? yes H: 116405429 E: 116405434 User 'user2' has password 'phplol'? no H: 116405434 E: 116405434 User 'user2' has password 'hunter2'? yes H: 116405429 E: 116405428 User 'user3' has password 'phplol'? no H: 116405428 E: 116405428 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 116405429 E: 116656736 User 'user4' has password 'phplol'? no H: 116656736 E: 116656736 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 116405428 E: 116405428 User 'user3' has password 'password1'? yes
Output for 5.6.28
H: 1024220807 E: 1024220806 User 'user1' has password 'phplol'? no H: 1024220806 E: 1024220806 User 'user1' has password 'password1'? yes H: 1024220807 E: 1024220812 User 'user2' has password 'phplol'? no H: 1024220812 E: 1024220812 User 'user2' has password 'hunter2'? yes H: 1024220807 E: 1024220806 User 'user3' has password 'phplol'? no H: 1024220806 E: 1024220806 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1024220807 E: 1024472114 User 'user4' has password 'phplol'? no H: 1024472114 E: 1024472114 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1024220806 E: 1024220806 User 'user3' has password 'password1'? yes
Output for 5.6.21
H: 1170197251 E: 1170197250 User 'user1' has password 'phplol'? no H: 1170197250 E: 1170197250 User 'user1' has password 'password1'? yes H: 1170197251 E: 1170197256 User 'user2' has password 'phplol'? no H: 1170197256 E: 1170197256 User 'user2' has password 'hunter2'? yes H: 1170197251 E: 1170197250 User 'user3' has password 'phplol'? no H: 1170197250 E: 1170197250 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1170197251 E: 1170448558 User 'user4' has password 'phplol'? no H: 1170448558 E: 1170448558 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1170197250 E: 1170197250 User 'user3' has password 'password1'? yes
Output for 5.6.20
H: 1610771722 E: 1610771721 User 'user1' has password 'phplol'? no H: 1610771721 E: 1610771721 User 'user1' has password 'password1'? yes H: 1610771722 E: 1610771727 User 'user2' has password 'phplol'? no H: 1610771727 E: 1610771727 User 'user2' has password 'hunter2'? yes H: 1610771722 E: 1610771721 User 'user3' has password 'phplol'? no H: 1610771721 E: 1610771721 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1610771722 E: 1611023029 User 'user4' has password 'phplol'? no H: 1611023029 E: 1611023029 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1610771721 E: 1610771721 User 'user3' has password 'password1'? yes
Output for 5.6.19
H: 1218499999 E: 1218499998 User 'user1' has password 'phplol'? no H: 1218499998 E: 1218499998 User 'user1' has password 'password1'? yes H: 1218499999 E: 1218500004 User 'user2' has password 'phplol'? no H: 1218500004 E: 1218500004 User 'user2' has password 'hunter2'? yes H: 1218499999 E: 1218499998 User 'user3' has password 'phplol'? no H: 1218499998 E: 1218499998 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1218499999 E: 1218751306 User 'user4' has password 'phplol'? no H: 1218751306 E: 1218751306 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1218499998 E: 1218499998 User 'user3' has password 'password1'? yes
Output for 5.6.18
H: 703979424 E: 703979423 User 'user1' has password 'phplol'? no H: 703979423 E: 703979423 User 'user1' has password 'password1'? yes H: 703979424 E: 703979429 User 'user2' has password 'phplol'? no H: 703979429 E: 703979429 User 'user2' has password 'hunter2'? yes H: 703979424 E: 703979423 User 'user3' has password 'phplol'? no H: 703979423 E: 703979423 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 703979424 E: 704230731 User 'user4' has password 'phplol'? no H: 704230731 E: 704230731 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 703979423 E: 703979423 User 'user3' has password 'password1'? yes
Output for 5.6.17
H: 1228735041 E: 1228735040 User 'user1' has password 'phplol'? no H: 1228735040 E: 1228735040 User 'user1' has password 'password1'? yes H: 1228735041 E: 1228735046 User 'user2' has password 'phplol'? no H: 1228735046 E: 1228735046 User 'user2' has password 'hunter2'? yes H: 1228735041 E: 1228735040 User 'user3' has password 'phplol'? no H: 1228735040 E: 1228735040 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1228735041 E: 1228986348 User 'user4' has password 'phplol'? no H: 1228986348 E: 1228986348 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1228735040 E: 1228735040 User 'user3' has password 'password1'? yes
Output for 5.6.16
H: 1230314806 E: 1230314805 User 'user1' has password 'phplol'? no H: 1230314805 E: 1230314805 User 'user1' has password 'password1'? yes H: 1230314806 E: 1230314811 User 'user2' has password 'phplol'? no H: 1230314811 E: 1230314811 User 'user2' has password 'hunter2'? yes H: 1230314806 E: 1230314805 User 'user3' has password 'phplol'? no H: 1230314805 E: 1230314805 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1230314806 E: 1230566113 User 'user4' has password 'phplol'? no H: 1230566113 E: 1230566113 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1230314805 E: 1230314805 User 'user3' has password 'password1'? yes
Output for 5.6.15
H: 1046801867 E: 1046801866 User 'user1' has password 'phplol'? no H: 1046801866 E: 1046801866 User 'user1' has password 'password1'? yes H: 1046801867 E: 1046801872 User 'user2' has password 'phplol'? no H: 1046801872 E: 1046801872 User 'user2' has password 'hunter2'? yes H: 1046801867 E: 1046801866 User 'user3' has password 'phplol'? no H: 1046801866 E: 1046801866 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1046801867 E: 1047053174 User 'user4' has password 'phplol'? no H: 1047053174 E: 1047053174 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1046801866 E: 1046801866 User 'user3' has password 'password1'? yes
Output for 5.6.14
H: 2417365 E: 2417364 User 'user1' has password 'phplol'? no H: 2417364 E: 2417364 User 'user1' has password 'password1'? yes H: 2417365 E: 2417370 User 'user2' has password 'phplol'? no H: 2417370 E: 2417370 User 'user2' has password 'hunter2'? yes H: 2417365 E: 2417364 User 'user3' has password 'phplol'? no H: 2417364 E: 2417364 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 2417365 E: 2668672 User 'user4' has password 'phplol'? no H: 2668672 E: 2668672 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 2417364 E: 2417364 User 'user3' has password 'password1'? yes
Output for 5.6.13
H: 617370491 E: 617370490 User 'user1' has password 'phplol'? no H: 617370490 E: 617370490 User 'user1' has password 'password1'? yes H: 617370491 E: 617370496 User 'user2' has password 'phplol'? no H: 617370496 E: 617370496 User 'user2' has password 'hunter2'? yes H: 617370491 E: 617370490 User 'user3' has password 'phplol'? no H: 617370490 E: 617370490 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 617370491 E: 617621798 User 'user4' has password 'phplol'? no H: 617621798 E: 617621798 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 617370490 E: 617370490 User 'user3' has password 'password1'? yes
Output for 5.6.12
H: 736315981 E: 736315980 User 'user1' has password 'phplol'? no H: 736315980 E: 736315980 User 'user1' has password 'password1'? yes H: 736315981 E: 736315986 User 'user2' has password 'phplol'? no H: 736315986 E: 736315986 User 'user2' has password 'hunter2'? yes H: 736315981 E: 736315980 User 'user3' has password 'phplol'? no H: 736315980 E: 736315980 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 736315981 E: 736567288 User 'user4' has password 'phplol'? no H: 736567288 E: 736567288 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 736315980 E: 736315980 User 'user3' has password 'password1'? yes
Output for 5.6.11
H: 875502329 E: 875502328 User 'user1' has password 'phplol'? no H: 875502328 E: 875502328 User 'user1' has password 'password1'? yes H: 875502329 E: 875502334 User 'user2' has password 'phplol'? no H: 875502334 E: 875502334 User 'user2' has password 'hunter2'? yes H: 875502329 E: 875502328 User 'user3' has password 'phplol'? no H: 875502328 E: 875502328 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 875502329 E: 875753636 User 'user4' has password 'phplol'? no H: 875753636 E: 875753636 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 875502328 E: 875502328 User 'user3' has password 'password1'? yes
Output for 5.6.10
H: 1148597950 E: 1148597949 User 'user1' has password 'phplol'? no H: 1148597949 E: 1148597949 User 'user1' has password 'password1'? yes H: 1148597950 E: 1148597955 User 'user2' has password 'phplol'? no H: 1148597955 E: 1148597955 User 'user2' has password 'hunter2'? yes H: 1148597950 E: 1148597949 User 'user3' has password 'phplol'? no H: 1148597949 E: 1148597949 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1148597950 E: 1148849257 User 'user4' has password 'phplol'? no H: 1148849257 E: 1148849257 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1148597949 E: 1148597949 User 'user3' has password 'password1'? yes
Output for 5.6.9
H: 1877302660 E: 1877302659 User 'user1' has password 'phplol'? no H: 1877302659 E: 1877302659 User 'user1' has password 'password1'? yes H: 1877302660 E: 1877302665 User 'user2' has password 'phplol'? no H: 1877302665 E: 1877302665 User 'user2' has password 'hunter2'? yes H: 1877302660 E: 1877302659 User 'user3' has password 'phplol'? no H: 1877302659 E: 1877302659 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1877302660 E: 1877553967 User 'user4' has password 'phplol'? no H: 1877553967 E: 1877553967 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1877302659 E: 1877302659 User 'user3' has password 'password1'? yes
Output for 5.6.8
H: 1889102461 E: 1889102460 User 'user1' has password 'phplol'? no H: 1889102460 E: 1889102460 User 'user1' has password 'password1'? yes H: 1889102461 E: 1889102466 User 'user2' has password 'phplol'? no H: 1889102466 E: 1889102466 User 'user2' has password 'hunter2'? yes H: 1889102461 E: 1889102460 User 'user3' has password 'phplol'? no H: 1889102460 E: 1889102460 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1889102461 E: 1889353768 User 'user4' has password 'phplol'? no H: 1889353768 E: 1889353768 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1889102460 E: 1889102460 User 'user3' has password 'password1'? yes
Output for 5.6.7
H: 122756201 E: 122756200 User 'user1' has password 'phplol'? no H: 122756200 E: 122756200 User 'user1' has password 'password1'? yes H: 122756201 E: 122756206 User 'user2' has password 'phplol'? no H: 122756206 E: 122756206 User 'user2' has password 'hunter2'? yes H: 122756201 E: 122756200 User 'user3' has password 'phplol'? no H: 122756200 E: 122756200 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 122756201 E: 123007508 User 'user4' has password 'phplol'? no H: 123007508 E: 123007508 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 122756200 E: 122756200 User 'user3' has password 'password1'? yes
Output for 5.5.35
H: 966886905 E: 966886904 User 'user1' has password 'phplol'? no H: 966886904 E: 966886904 User 'user1' has password 'password1'? yes H: 966886905 E: 966886910 User 'user2' has password 'phplol'? no H: 966886910 E: 966886910 User 'user2' has password 'hunter2'? yes H: 966886905 E: 966886904 User 'user3' has password 'phplol'? no H: 966886904 E: 966886904 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 966886905 E: 967138212 User 'user4' has password 'phplol'? no H: 967138212 E: 967138212 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 966886904 E: 966886904 User 'user3' has password 'password1'? yes
Output for 5.5.34
H: 1611399094 E: 1611399093 User 'user1' has password 'phplol'? no H: 1611399093 E: 1611399093 User 'user1' has password 'password1'? yes H: 1611399094 E: 1611399099 User 'user2' has password 'phplol'? no H: 1611399099 E: 1611399099 User 'user2' has password 'hunter2'? yes H: 1611399094 E: 1611399093 User 'user3' has password 'phplol'? no H: 1611399093 E: 1611399093 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1611399094 E: 1611650401 User 'user4' has password 'phplol'? no H: 1611650401 E: 1611650401 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1611399093 E: 1611399093 User 'user3' has password 'password1'? yes
Output for 5.5.33
H: 15157494 E: 15157493 User 'user1' has password 'phplol'? no H: 15157493 E: 15157493 User 'user1' has password 'password1'? yes H: 15157494 E: 15157499 User 'user2' has password 'phplol'? no H: 15157499 E: 15157499 User 'user2' has password 'hunter2'? yes H: 15157494 E: 15157493 User 'user3' has password 'phplol'? no H: 15157493 E: 15157493 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 15157494 E: 15408801 User 'user4' has password 'phplol'? no H: 15408801 E: 15408801 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 15157493 E: 15157493 User 'user3' has password 'password1'? yes
Output for 5.5.32
H: 248383902 E: 248383901 User 'user1' has password 'phplol'? no H: 248383901 E: 248383901 User 'user1' has password 'password1'? yes H: 248383902 E: 248383907 User 'user2' has password 'phplol'? no H: 248383907 E: 248383907 User 'user2' has password 'hunter2'? yes H: 248383902 E: 248383901 User 'user3' has password 'phplol'? no H: 248383901 E: 248383901 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 248383902 E: 248635209 User 'user4' has password 'phplol'? no H: 248635209 E: 248635209 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 248383901 E: 248383901 User 'user3' has password 'password1'? yes
Output for 5.5.31
H: 1369945680 E: 1369945679 User 'user1' has password 'phplol'? no H: 1369945679 E: 1369945679 User 'user1' has password 'password1'? yes H: 1369945680 E: 1369945685 User 'user2' has password 'phplol'? no H: 1369945685 E: 1369945685 User 'user2' has password 'hunter2'? yes H: 1369945680 E: 1369945679 User 'user3' has password 'phplol'? no H: 1369945679 E: 1369945679 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1369945680 E: 1370196987 User 'user4' has password 'phplol'? no H: 1370196987 E: 1370196987 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1369945679 E: 1369945679 User 'user3' has password 'password1'? yes
Output for 5.5.30
H: 1923652959 E: 1923652958 User 'user1' has password 'phplol'? no H: 1923652958 E: 1923652958 User 'user1' has password 'password1'? yes H: 1923652959 E: 1923652964 User 'user2' has password 'phplol'? no H: 1923652964 E: 1923652964 User 'user2' has password 'hunter2'? yes H: 1923652959 E: 1923652958 User 'user3' has password 'phplol'? no H: 1923652958 E: 1923652958 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1923652959 E: 1923904266 User 'user4' has password 'phplol'? no H: 1923904266 E: 1923904266 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1923652958 E: 1923652958 User 'user3' has password 'password1'? yes
Output for 5.5.29
H: 749918882 E: 749918881 User 'user1' has password 'phplol'? no H: 749918881 E: 749918881 User 'user1' has password 'password1'? yes H: 749918882 E: 749918887 User 'user2' has password 'phplol'? no H: 749918887 E: 749918887 User 'user2' has password 'hunter2'? yes H: 749918882 E: 749918881 User 'user3' has password 'phplol'? no H: 749918881 E: 749918881 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 749918882 E: 750170189 User 'user4' has password 'phplol'? no H: 750170189 E: 750170189 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 749918881 E: 749918881 User 'user3' has password 'password1'? yes
Output for 5.5.28
H: 693448122 E: 693448121 User 'user1' has password 'phplol'? no H: 693448121 E: 693448121 User 'user1' has password 'password1'? yes H: 693448122 E: 693448127 User 'user2' has password 'phplol'? no H: 693448127 E: 693448127 User 'user2' has password 'hunter2'? yes H: 693448122 E: 693448121 User 'user3' has password 'phplol'? no H: 693448121 E: 693448121 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 693448122 E: 693699429 User 'user4' has password 'phplol'? no H: 693699429 E: 693699429 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 693448121 E: 693448121 User 'user3' has password 'password1'? yes
Output for 5.5.27
H: 1962954872 E: 1962954871 User 'user1' has password 'phplol'? no H: 1962954871 E: 1962954871 User 'user1' has password 'password1'? yes H: 1962954872 E: 1962954877 User 'user2' has password 'phplol'? no H: 1962954877 E: 1962954877 User 'user2' has password 'hunter2'? yes H: 1962954872 E: 1962954871 User 'user3' has password 'phplol'? no H: 1962954871 E: 1962954871 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1962954872 E: 1963206179 User 'user4' has password 'phplol'? no H: 1963206179 E: 1963206179 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1962954871 E: 1962954871 User 'user3' has password 'password1'? yes
Output for 5.5.26
H: 542043150 E: 542043149 User 'user1' has password 'phplol'? no H: 542043149 E: 542043149 User 'user1' has password 'password1'? yes H: 542043150 E: 542043155 User 'user2' has password 'phplol'? no H: 542043155 E: 542043155 User 'user2' has password 'hunter2'? yes H: 542043150 E: 542043149 User 'user3' has password 'phplol'? no H: 542043149 E: 542043149 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 542043150 E: 542294457 User 'user4' has password 'phplol'? no H: 542294457 E: 542294457 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 542043149 E: 542043149 User 'user3' has password 'password1'? yes
Output for 5.5.25
H: 1474427268 E: 1474427267 User 'user1' has password 'phplol'? no H: 1474427267 E: 1474427267 User 'user1' has password 'password1'? yes H: 1474427268 E: 1474427273 User 'user2' has password 'phplol'? no H: 1474427273 E: 1474427273 User 'user2' has password 'hunter2'? yes H: 1474427268 E: 1474427267 User 'user3' has password 'phplol'? no H: 1474427267 E: 1474427267 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1474427268 E: 1474678575 User 'user4' has password 'phplol'? no H: 1474678575 E: 1474678575 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1474427267 E: 1474427267 User 'user3' has password 'password1'? yes
Output for 5.5.24
H: 1127905810 E: 1127905809 User 'user1' has password 'phplol'? no H: 1127905809 E: 1127905809 User 'user1' has password 'password1'? yes H: 1127905810 E: 1127905815 User 'user2' has password 'phplol'? no H: 1127905815 E: 1127905815 User 'user2' has password 'hunter2'? yes H: 1127905810 E: 1127905809 User 'user3' has password 'phplol'? no H: 1127905809 E: 1127905809 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1127905810 E: 1128157117 User 'user4' has password 'phplol'? no H: 1128157117 E: 1128157117 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1127905809 E: 1127905809 User 'user3' has password 'password1'? yes
Output for 5.4.45
H: 788992654 E: 788992653 User 'user1' has password 'phplol'? no H: 788992653 E: 788992653 User 'user1' has password 'password1'? yes H: 788992654 E: 788992659 User 'user2' has password 'phplol'? no H: 788992659 E: 788992659 User 'user2' has password 'hunter2'? yes H: 788992654 E: 788992653 User 'user3' has password 'phplol'? no H: 788992653 E: 788992653 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 788992654 E: 789243961 User 'user4' has password 'phplol'? no H: 789243961 E: 789243961 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 788992653 E: 788992653 User 'user3' has password 'password1'? yes
Output for 5.4.44
H: 1487437747 E: 1487437746 User 'user1' has password 'phplol'? no H: 1487437746 E: 1487437746 User 'user1' has password 'password1'? yes H: 1487437747 E: 1487437752 User 'user2' has password 'phplol'? no H: 1487437752 E: 1487437752 User 'user2' has password 'hunter2'? yes H: 1487437747 E: 1487437746 User 'user3' has password 'phplol'? no H: 1487437746 E: 1487437746 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1487437747 E: 1487689054 User 'user4' has password 'phplol'? no H: 1487689054 E: 1487689054 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1487437746 E: 1487437746 User 'user3' has password 'password1'? yes
Output for 5.4.43
H: 1884189556 E: 1884189555 User 'user1' has password 'phplol'? no H: 1884189555 E: 1884189555 User 'user1' has password 'password1'? yes H: 1884189556 E: 1884189561 User 'user2' has password 'phplol'? no H: 1884189561 E: 1884189561 User 'user2' has password 'hunter2'? yes H: 1884189556 E: 1884189555 User 'user3' has password 'phplol'? no H: 1884189555 E: 1884189555 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1884189556 E: 1884440863 User 'user4' has password 'phplol'? no H: 1884440863 E: 1884440863 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1884189555 E: 1884189555 User 'user3' has password 'password1'? yes
Output for 5.4.42
H: 2094308012 E: 2094308011 User 'user1' has password 'phplol'? no H: 2094308011 E: 2094308011 User 'user1' has password 'password1'? yes H: 2094308012 E: 2094308017 User 'user2' has password 'phplol'? no H: 2094308017 E: 2094308017 User 'user2' has password 'hunter2'? yes H: 2094308012 E: 2094308011 User 'user3' has password 'phplol'? no H: 2094308011 E: 2094308011 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 2094308012 E: 2094559319 User 'user4' has password 'phplol'? no H: 2094559319 E: 2094559319 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 2094308011 E: 2094308011 User 'user3' has password 'password1'? yes
Output for 5.4.41
H: 1022892212 E: 1022892211 User 'user1' has password 'phplol'? no H: 1022892211 E: 1022892211 User 'user1' has password 'password1'? yes H: 1022892212 E: 1022892217 User 'user2' has password 'phplol'? no H: 1022892217 E: 1022892217 User 'user2' has password 'hunter2'? yes H: 1022892212 E: 1022892211 User 'user3' has password 'phplol'? no H: 1022892211 E: 1022892211 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1022892212 E: 1023143519 User 'user4' has password 'phplol'? no H: 1023143519 E: 1023143519 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1022892211 E: 1022892211 User 'user3' has password 'password1'? yes
Output for 5.4.40
H: 542821181 E: 542821180 User 'user1' has password 'phplol'? no H: 542821180 E: 542821180 User 'user1' has password 'password1'? yes H: 542821181 E: 542821186 User 'user2' has password 'phplol'? no H: 542821186 E: 542821186 User 'user2' has password 'hunter2'? yes H: 542821181 E: 542821180 User 'user3' has password 'phplol'? no H: 542821180 E: 542821180 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 542821181 E: 543072488 User 'user4' has password 'phplol'? no H: 543072488 E: 543072488 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 542821180 E: 542821180 User 'user3' has password 'password1'? yes
Output for 5.4.39
H: 1715055912 E: 1715055911 User 'user1' has password 'phplol'? no H: 1715055911 E: 1715055911 User 'user1' has password 'password1'? yes H: 1715055912 E: 1715055917 User 'user2' has password 'phplol'? no H: 1715055917 E: 1715055917 User 'user2' has password 'hunter2'? yes H: 1715055912 E: 1715055911 User 'user3' has password 'phplol'? no H: 1715055911 E: 1715055911 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1715055912 E: 1715307219 User 'user4' has password 'phplol'? no H: 1715307219 E: 1715307219 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1715055911 E: 1715055911 User 'user3' has password 'password1'? yes
Output for 5.4.38
H: 549427864 E: 549427863 User 'user1' has password 'phplol'? no H: 549427863 E: 549427863 User 'user1' has password 'password1'? yes H: 549427864 E: 549427869 User 'user2' has password 'phplol'? no H: 549427869 E: 549427869 User 'user2' has password 'hunter2'? yes H: 549427864 E: 549427863 User 'user3' has password 'phplol'? no H: 549427863 E: 549427863 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 549427864 E: 549679171 User 'user4' has password 'phplol'? no H: 549679171 E: 549679171 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 549427863 E: 549427863 User 'user3' has password 'password1'? yes
Output for 5.4.37
H: 1742204868 E: 1742204867 User 'user1' has password 'phplol'? no H: 1742204867 E: 1742204867 User 'user1' has password 'password1'? yes H: 1742204868 E: 1742204873 User 'user2' has password 'phplol'? no H: 1742204873 E: 1742204873 User 'user2' has password 'hunter2'? yes H: 1742204868 E: 1742204867 User 'user3' has password 'phplol'? no H: 1742204867 E: 1742204867 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1742204868 E: 1742456175 User 'user4' has password 'phplol'? no H: 1742456175 E: 1742456175 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1742204867 E: 1742204867 User 'user3' has password 'password1'? yes
Output for 5.4.36
H: 776096512 E: 776096511 User 'user1' has password 'phplol'? no H: 776096511 E: 776096511 User 'user1' has password 'password1'? yes H: 776096512 E: 776096517 User 'user2' has password 'phplol'? no H: 776096517 E: 776096517 User 'user2' has password 'hunter2'? yes H: 776096512 E: 776096511 User 'user3' has password 'phplol'? no H: 776096511 E: 776096511 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 776096512 E: 776347819 User 'user4' has password 'phplol'? no H: 776347819 E: 776347819 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 776096511 E: 776096511 User 'user3' has password 'password1'? yes
Output for 5.4.35
H: 1458467276 E: 1458467275 User 'user1' has password 'phplol'? no H: 1458467275 E: 1458467275 User 'user1' has password 'password1'? yes H: 1458467276 E: 1458467281 User 'user2' has password 'phplol'? no H: 1458467281 E: 1458467281 User 'user2' has password 'hunter2'? yes H: 1458467276 E: 1458467275 User 'user3' has password 'phplol'? no H: 1458467275 E: 1458467275 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1458467276 E: 1458718583 User 'user4' has password 'phplol'? no H: 1458718583 E: 1458718583 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1458467275 E: 1458467275 User 'user3' has password 'password1'? yes
Output for 5.4.34
H: 1843154111 E: 1843154110 User 'user1' has password 'phplol'? no H: 1843154110 E: 1843154110 User 'user1' has password 'password1'? yes H: 1843154111 E: 1843154116 User 'user2' has password 'phplol'? no H: 1843154116 E: 1843154116 User 'user2' has password 'hunter2'? yes H: 1843154111 E: 1843154110 User 'user3' has password 'phplol'? no H: 1843154110 E: 1843154110 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1843154111 E: 1843405418 User 'user4' has password 'phplol'? no H: 1843405418 E: 1843405418 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1843154110 E: 1843154110 User 'user3' has password 'password1'? yes
Output for 5.4.32
H: 1995149785 E: 1995149784 User 'user1' has password 'phplol'? no H: 1995149784 E: 1995149784 User 'user1' has password 'password1'? yes H: 1995149785 E: 1995149790 User 'user2' has password 'phplol'? no H: 1995149790 E: 1995149790 User 'user2' has password 'hunter2'? yes H: 1995149785 E: 1995149784 User 'user3' has password 'phplol'? no H: 1995149784 E: 1995149784 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1995149785 E: 1995401092 User 'user4' has password 'phplol'? no H: 1995401092 E: 1995401092 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1995149784 E: 1995149784 User 'user3' has password 'password1'? yes
Output for 5.4.31
H: 1875734184 E: 1875734183 User 'user1' has password 'phplol'? no H: 1875734183 E: 1875734183 User 'user1' has password 'password1'? yes H: 1875734184 E: 1875734189 User 'user2' has password 'phplol'? no H: 1875734189 E: 1875734189 User 'user2' has password 'hunter2'? yes H: 1875734184 E: 1875734183 User 'user3' has password 'phplol'? no H: 1875734183 E: 1875734183 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1875734184 E: 1875985491 User 'user4' has password 'phplol'? no H: 1875985491 E: 1875985491 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1875734183 E: 1875734183 User 'user3' has password 'password1'? yes
Output for 5.4.30
H: 1490892734 E: 1490892733 User 'user1' has password 'phplol'? no H: 1490892733 E: 1490892733 User 'user1' has password 'password1'? yes H: 1490892734 E: 1490892739 User 'user2' has password 'phplol'? no H: 1490892739 E: 1490892739 User 'user2' has password 'hunter2'? yes H: 1490892734 E: 1490892733 User 'user3' has password 'phplol'? no H: 1490892733 E: 1490892733 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1490892734 E: 1491144041 User 'user4' has password 'phplol'? no H: 1491144041 E: 1491144041 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1490892733 E: 1490892733 User 'user3' has password 'password1'? yes
Output for 5.4.29
H: 525868979 E: 525868978 User 'user1' has password 'phplol'? no H: 525868978 E: 525868978 User 'user1' has password 'password1'? yes H: 525868979 E: 525868984 User 'user2' has password 'phplol'? no H: 525868984 E: 525868984 User 'user2' has password 'hunter2'? yes H: 525868979 E: 525868978 User 'user3' has password 'phplol'? no H: 525868978 E: 525868978 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 525868979 E: 526120286 User 'user4' has password 'phplol'? no H: 526120286 E: 526120286 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 525868978 E: 525868978 User 'user3' has password 'password1'? yes
Output for 5.4.28
H: 753480054 E: 753480053 User 'user1' has password 'phplol'? no H: 753480053 E: 753480053 User 'user1' has password 'password1'? yes H: 753480054 E: 753480059 User 'user2' has password 'phplol'? no H: 753480059 E: 753480059 User 'user2' has password 'hunter2'? yes H: 753480054 E: 753480053 User 'user3' has password 'phplol'? no H: 753480053 E: 753480053 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 753480054 E: 753731361 User 'user4' has password 'phplol'? no H: 753731361 E: 753731361 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 753480053 E: 753480053 User 'user3' has password 'password1'? yes
Output for 5.4.27
H: 1259747156 E: 1259747155 User 'user1' has password 'phplol'? no H: 1259747155 E: 1259747155 User 'user1' has password 'password1'? yes H: 1259747156 E: 1259747161 User 'user2' has password 'phplol'? no H: 1259747161 E: 1259747161 User 'user2' has password 'hunter2'? yes H: 1259747156 E: 1259747155 User 'user3' has password 'phplol'? no H: 1259747155 E: 1259747155 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1259747156 E: 1259998463 User 'user4' has password 'phplol'? no H: 1259998463 E: 1259998463 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1259747155 E: 1259747155 User 'user3' has password 'password1'? yes
Output for 5.4.26
H: 1079272771 E: 1079272770 User 'user1' has password 'phplol'? no H: 1079272770 E: 1079272770 User 'user1' has password 'password1'? yes H: 1079272771 E: 1079272776 User 'user2' has password 'phplol'? no H: 1079272776 E: 1079272776 User 'user2' has password 'hunter2'? yes H: 1079272771 E: 1079272770 User 'user3' has password 'phplol'? no H: 1079272770 E: 1079272770 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1079272771 E: 1079524078 User 'user4' has password 'phplol'? no H: 1079524078 E: 1079524078 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1079272770 E: 1079272770 User 'user3' has password 'password1'? yes
Output for 5.4.25
H: 1652467651 E: 1652467650 User 'user1' has password 'phplol'? no H: 1652467650 E: 1652467650 User 'user1' has password 'password1'? yes H: 1652467651 E: 1652467656 User 'user2' has password 'phplol'? no H: 1652467656 E: 1652467656 User 'user2' has password 'hunter2'? yes H: 1652467651 E: 1652467650 User 'user3' has password 'phplol'? no H: 1652467650 E: 1652467650 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1652467651 E: 1652718958 User 'user4' has password 'phplol'? no H: 1652718958 E: 1652718958 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1652467650 E: 1652467650 User 'user3' has password 'password1'? yes
Output for 5.4.24
H: 860301448 E: 860301447 User 'user1' has password 'phplol'? no H: 860301447 E: 860301447 User 'user1' has password 'password1'? yes H: 860301448 E: 860301453 User 'user2' has password 'phplol'? no H: 860301453 E: 860301453 User 'user2' has password 'hunter2'? yes H: 860301448 E: 860301447 User 'user3' has password 'phplol'? no H: 860301447 E: 860301447 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 860301448 E: 860552755 User 'user4' has password 'phplol'? no H: 860552755 E: 860552755 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 860301447 E: 860301447 User 'user3' has password 'password1'? yes
Output for 5.4.23
H: 491319544 E: 491319543 User 'user1' has password 'phplol'? no H: 491319543 E: 491319543 User 'user1' has password 'password1'? yes H: 491319544 E: 491319549 User 'user2' has password 'phplol'? no H: 491319549 E: 491319549 User 'user2' has password 'hunter2'? yes H: 491319544 E: 491319543 User 'user3' has password 'phplol'? no H: 491319543 E: 491319543 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 491319544 E: 491570851 User 'user4' has password 'phplol'? no H: 491570851 E: 491570851 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 491319543 E: 491319543 User 'user3' has password 'password1'? yes
Output for 5.4.22
H: 1843215416 E: 1843215415 User 'user1' has password 'phplol'? no H: 1843215415 E: 1843215415 User 'user1' has password 'password1'? yes H: 1843215416 E: 1843215421 User 'user2' has password 'phplol'? no H: 1843215421 E: 1843215421 User 'user2' has password 'hunter2'? yes H: 1843215416 E: 1843215415 User 'user3' has password 'phplol'? no H: 1843215415 E: 1843215415 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1843215416 E: 1843466723 User 'user4' has password 'phplol'? no H: 1843466723 E: 1843466723 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1843215415 E: 1843215415 User 'user3' has password 'password1'? yes
Output for 5.4.21
H: 2064672812 E: 2064672811 User 'user1' has password 'phplol'? no H: 2064672811 E: 2064672811 User 'user1' has password 'password1'? yes H: 2064672812 E: 2064672817 User 'user2' has password 'phplol'? no H: 2064672817 E: 2064672817 User 'user2' has password 'hunter2'? yes H: 2064672812 E: 2064672811 User 'user3' has password 'phplol'? no H: 2064672811 E: 2064672811 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 2064672812 E: 2064924119 User 'user4' has password 'phplol'? no H: 2064924119 E: 2064924119 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 2064672811 E: 2064672811 User 'user3' has password 'password1'? yes
Output for 5.4.20
H: 167999963 E: 167999962 User 'user1' has password 'phplol'? no H: 167999962 E: 167999962 User 'user1' has password 'password1'? yes H: 167999963 E: 167999968 User 'user2' has password 'phplol'? no H: 167999968 E: 167999968 User 'user2' has password 'hunter2'? yes H: 167999963 E: 167999962 User 'user3' has password 'phplol'? no H: 167999962 E: 167999962 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 167999963 E: 168251270 User 'user4' has password 'phplol'? no H: 168251270 E: 168251270 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 167999962 E: 167999962 User 'user3' has password 'password1'? yes
Output for 5.4.19
H: 1458902396 E: 1458902395 User 'user1' has password 'phplol'? no H: 1458902395 E: 1458902395 User 'user1' has password 'password1'? yes H: 1458902396 E: 1458902401 User 'user2' has password 'phplol'? no H: 1458902401 E: 1458902401 User 'user2' has password 'hunter2'? yes H: 1458902396 E: 1458902395 User 'user3' has password 'phplol'? no H: 1458902395 E: 1458902395 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1458902396 E: 1459153703 User 'user4' has password 'phplol'? no H: 1459153703 E: 1459153703 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1458902395 E: 1458902395 User 'user3' has password 'password1'? yes
Output for 5.4.18
H: 1858413394 E: 1858413393 User 'user1' has password 'phplol'? no H: 1858413393 E: 1858413393 User 'user1' has password 'password1'? yes H: 1858413394 E: 1858413399 User 'user2' has password 'phplol'? no H: 1858413399 E: 1858413399 User 'user2' has password 'hunter2'? yes H: 1858413394 E: 1858413393 User 'user3' has password 'phplol'? no H: 1858413393 E: 1858413393 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1858413394 E: 1858664701 User 'user4' has password 'phplol'? no H: 1858664701 E: 1858664701 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1858413393 E: 1858413393 User 'user3' has password 'password1'? yes
Output for 5.4.17
H: 1889100421 E: 1889100420 User 'user1' has password 'phplol'? no H: 1889100420 E: 1889100420 User 'user1' has password 'password1'? yes H: 1889100421 E: 1889100426 User 'user2' has password 'phplol'? no H: 1889100426 E: 1889100426 User 'user2' has password 'hunter2'? yes H: 1889100421 E: 1889100420 User 'user3' has password 'phplol'? no H: 1889100420 E: 1889100420 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1889100421 E: 1889351728 User 'user4' has password 'phplol'? no H: 1889351728 E: 1889351728 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1889100420 E: 1889100420 User 'user3' has password 'password1'? yes
Output for 5.4.16
H: 14620437 E: 14620436 User 'user1' has password 'phplol'? no H: 14620436 E: 14620436 User 'user1' has password 'password1'? yes H: 14620437 E: 14620442 User 'user2' has password 'phplol'? no H: 14620442 E: 14620442 User 'user2' has password 'hunter2'? yes H: 14620437 E: 14620436 User 'user3' has password 'phplol'? no H: 14620436 E: 14620436 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 14620437 E: 14871744 User 'user4' has password 'phplol'? no H: 14871744 E: 14871744 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 14620436 E: 14620436 User 'user3' has password 'password1'? yes
Output for 5.4.15
H: 382526309 E: 382526308 User 'user1' has password 'phplol'? no H: 382526308 E: 382526308 User 'user1' has password 'password1'? yes H: 382526309 E: 382526314 User 'user2' has password 'phplol'? no H: 382526314 E: 382526314 User 'user2' has password 'hunter2'? yes H: 382526309 E: 382526308 User 'user3' has password 'phplol'? no H: 382526308 E: 382526308 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 382526309 E: 382777616 User 'user4' has password 'phplol'? no H: 382777616 E: 382777616 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 382526308 E: 382526308 User 'user3' has password 'password1'? yes
Output for 5.4.14
H: 398059079 E: 398059078 User 'user1' has password 'phplol'? no H: 398059078 E: 398059078 User 'user1' has password 'password1'? yes H: 398059079 E: 398059084 User 'user2' has password 'phplol'? no H: 398059084 E: 398059084 User 'user2' has password 'hunter2'? yes H: 398059079 E: 398059078 User 'user3' has password 'phplol'? no H: 398059078 E: 398059078 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 398059079 E: 398310386 User 'user4' has password 'phplol'? no H: 398310386 E: 398310386 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 398059078 E: 398059078 User 'user3' has password 'password1'? yes
Output for 5.4.13
H: 1390467718 E: 1390467717 User 'user1' has password 'phplol'? no H: 1390467717 E: 1390467717 User 'user1' has password 'password1'? yes H: 1390467718 E: 1390467723 User 'user2' has password 'phplol'? no H: 1390467723 E: 1390467723 User 'user2' has password 'hunter2'? yes H: 1390467718 E: 1390467717 User 'user3' has password 'phplol'? no H: 1390467717 E: 1390467717 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1390467718 E: 1390719025 User 'user4' has password 'phplol'? no H: 1390719025 E: 1390719025 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1390467717 E: 1390467717 User 'user3' has password 'password1'? yes
Output for 5.4.12
H: 236160503 E: 236160502 User 'user1' has password 'phplol'? no H: 236160502 E: 236160502 User 'user1' has password 'password1'? yes H: 236160503 E: 236160508 User 'user2' has password 'phplol'? no H: 236160508 E: 236160508 User 'user2' has password 'hunter2'? yes H: 236160503 E: 236160502 User 'user3' has password 'phplol'? no H: 236160502 E: 236160502 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 236160503 E: 236411810 User 'user4' has password 'phplol'? no H: 236411810 E: 236411810 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 236160502 E: 236160502 User 'user3' has password 'password1'? yes
Output for 5.4.11
H: 140889510 E: 140889509 User 'user1' has password 'phplol'? no H: 140889509 E: 140889509 User 'user1' has password 'password1'? yes H: 140889510 E: 140889515 User 'user2' has password 'phplol'? no H: 140889515 E: 140889515 User 'user2' has password 'hunter2'? yes H: 140889510 E: 140889509 User 'user3' has password 'phplol'? no H: 140889509 E: 140889509 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 140889510 E: 141140817 User 'user4' has password 'phplol'? no H: 141140817 E: 141140817 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 140889509 E: 140889509 User 'user3' has password 'password1'? yes
Output for 5.4.10
H: 1085164839 E: 1085164838 User 'user1' has password 'phplol'? no H: 1085164838 E: 1085164838 User 'user1' has password 'password1'? yes H: 1085164839 E: 1085164844 User 'user2' has password 'phplol'? no H: 1085164844 E: 1085164844 User 'user2' has password 'hunter2'? yes H: 1085164839 E: 1085164838 User 'user3' has password 'phplol'? no H: 1085164838 E: 1085164838 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1085164839 E: 1085416146 User 'user4' has password 'phplol'? no H: 1085416146 E: 1085416146 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1085164838 E: 1085164838 User 'user3' has password 'password1'? yes
Output for 5.4.9
H: 101433816 E: 101433815 User 'user1' has password 'phplol'? no H: 101433815 E: 101433815 User 'user1' has password 'password1'? yes H: 101433816 E: 101433821 User 'user2' has password 'phplol'? no H: 101433821 E: 101433821 User 'user2' has password 'hunter2'? yes H: 101433816 E: 101433815 User 'user3' has password 'phplol'? no H: 101433815 E: 101433815 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 101433816 E: 101685123 User 'user4' has password 'phplol'? no H: 101685123 E: 101685123 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 101433815 E: 101433815 User 'user3' has password 'password1'? yes
Output for 5.4.8
H: 1096189104 E: 1096189103 User 'user1' has password 'phplol'? no H: 1096189103 E: 1096189103 User 'user1' has password 'password1'? yes H: 1096189104 E: 1096189109 User 'user2' has password 'phplol'? no H: 1096189109 E: 1096189109 User 'user2' has password 'hunter2'? yes H: 1096189104 E: 1096189103 User 'user3' has password 'phplol'? no H: 1096189103 E: 1096189103 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1096189104 E: 1096440411 User 'user4' has password 'phplol'? no H: 1096440411 E: 1096440411 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1096189103 E: 1096189103 User 'user3' has password 'password1'? yes
Output for 5.4.7
H: 1216077498 E: 1216077497 User 'user1' has password 'phplol'? no H: 1216077497 E: 1216077497 User 'user1' has password 'password1'? yes H: 1216077498 E: 1216077503 User 'user2' has password 'phplol'? no H: 1216077503 E: 1216077503 User 'user2' has password 'hunter2'? yes H: 1216077498 E: 1216077497 User 'user3' has password 'phplol'? no H: 1216077497 E: 1216077497 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1216077498 E: 1216328805 User 'user4' has password 'phplol'? no H: 1216328805 E: 1216328805 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1216077497 E: 1216077497 User 'user3' has password 'password1'? yes
Output for 5.4.6
H: 1216954376 E: 1216954375 User 'user1' has password 'phplol'? no H: 1216954375 E: 1216954375 User 'user1' has password 'password1'? yes H: 1216954376 E: 1216954381 User 'user2' has password 'phplol'? no H: 1216954381 E: 1216954381 User 'user2' has password 'hunter2'? yes H: 1216954376 E: 1216954375 User 'user3' has password 'phplol'? no H: 1216954375 E: 1216954375 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1216954376 E: 1217205683 User 'user4' has password 'phplol'? no H: 1217205683 E: 1217205683 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1216954375 E: 1216954375 User 'user3' has password 'password1'? yes
Output for 5.4.5
H: 402606076 E: 402606075 User 'user1' has password 'phplol'? no H: 402606075 E: 402606075 User 'user1' has password 'password1'? yes H: 402606076 E: 402606081 User 'user2' has password 'phplol'? no H: 402606081 E: 402606081 User 'user2' has password 'hunter2'? yes H: 402606076 E: 402606075 User 'user3' has password 'phplol'? no H: 402606075 E: 402606075 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 402606076 E: 402857383 User 'user4' has password 'phplol'? no H: 402857383 E: 402857383 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 402606075 E: 402606075 User 'user3' has password 'password1'? yes
Output for 5.4.4
H: 1290783614 E: 1290783613 User 'user1' has password 'phplol'? no H: 1290783613 E: 1290783613 User 'user1' has password 'password1'? yes H: 1290783614 E: 1290783619 User 'user2' has password 'phplol'? no H: 1290783619 E: 1290783619 User 'user2' has password 'hunter2'? yes H: 1290783614 E: 1290783613 User 'user3' has password 'phplol'? no H: 1290783613 E: 1290783613 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1290783614 E: 1291034921 User 'user4' has password 'phplol'? no H: 1291034921 E: 1291034921 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1290783613 E: 1290783613 User 'user3' has password 'password1'? yes
Output for 5.4.3
H: 1009269606 E: 1009269605 User 'user1' has password 'phplol'? no H: 1009269605 E: 1009269605 User 'user1' has password 'password1'? yes H: 1009269606 E: 1009269611 User 'user2' has password 'phplol'? no H: 1009269611 E: 1009269611 User 'user2' has password 'hunter2'? yes H: 1009269606 E: 1009269605 User 'user3' has password 'phplol'? no H: 1009269605 E: 1009269605 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 1009269606 E: 1009520913 User 'user4' has password 'phplol'? no H: 1009520913 E: 1009520913 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 1009269605 E: 1009269605 User 'user3' has password 'password1'? yes
Output for 5.4.2
H: 325436894 E: 325436893 User 'user1' has password 'phplol'? no H: 325436893 E: 325436893 User 'user1' has password 'password1'? yes H: 325436894 E: 325436899 User 'user2' has password 'phplol'? no H: 325436899 E: 325436899 User 'user2' has password 'hunter2'? yes H: 325436894 E: 325436893 User 'user3' has password 'phplol'? no H: 325436893 E: 325436893 User 'user3' has password 'FN4A_zKEe]33p!'? yes H: 325436894 E: 325688201 User 'user4' has password 'phplol'? no H: 325688201 E: 325688201 User 'user4' has password 'xXgjan3a58qzX3'? yes Now let's get funky! H: 325436893 E: 325436893 User 'user3' has password 'password1'? yes

preferences:
144.48 ms | 402 KiB | 88 Q