3v4l.org

run code in 300+ PHP versions simultaneously
<?php $argv = array(null, "' OR 1=1--", 'root'); echo "<!doctype html>\n"; $username = @$_GET['username'] ? $_GET['username'] : $argv[1]; $password = @$_GET['password'] ? $_GET['password'] : $argv[2]; $password = md5($password); $pdo = new PDO('sqlite::memory:'); $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $pdo->exec("DROP TABLE IF EXISTS users"); $pdo->exec("CREATE TABLE users (username VARCHAR(255), password VARCHAR(255))"); $rootPassword = md5("secret"); $pdo->exec("INSERT INTO users (username, password) VALUES ('root', '$rootPassword');"); echo $q = "SELECT * FROM users WHERE username = '$username' AND password = '$password'"; $statement = $pdo->query($q); if (count($statement->fetchAll())) { echo "<br>\nAccess granted to $username!<br>\n"; } else { echo "<br>\nAccess denied for $username!<br>\n"; }
Output for 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
<!doctype html> SELECT * FROM users WHERE username = '' OR 1=1--' AND password = '63a9f0ea7bb98050796b649e85481845'<br> Access granted to ' OR 1=1--!<br>
Output for 5.1.4 - 5.1.6
<!doctype html> Fatal error: Uncaught exception 'PDOException' with message 'could not find driver' in /in/11B43:7 Stack trace: #0 /in/11B43(7): PDO->__construct('sqlite::memory:') #1 {main} thrown in /in/11B43 on line 7
Process exited with code 255.
Output for 5.1.0 - 5.1.3
<!doctype html> Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1 near "EXISTS": syntax error' in /in/11B43:9 Stack trace: #0 /in/11B43(9): PDO->exec('DROP TABLE IF E...') #1 {main} thrown in /in/11B43 on line 9
Process exited with code 255.
Output for 5.0.0 - 5.0.5
<!doctype html> Fatal error: Class 'PDO' not found in /in/11B43 on line 7
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected ',', expecting '(' in /in/11B43 on line 8
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected ',', expecting '(' in /in/11B43 on line 8
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'('' in /in/11B43 on line 8
Process exited with code 255.

preferences:
293.92 ms | 401 KiB | 455 Q