-
-
Save realies/5631eb0ea14df7b84d55b9f2376a8cc8 to your computer and use it in GitHub Desktop.
A way to allow direct login to adminer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$_GET["username"] = ""; | |
$_GET["db"] = "database"; | |
function adminer_object() { | |
class AdminerAutoLogin extends Adminer { | |
function credentials() { | |
return array("127.0.0.1", "username", "password"); | |
} | |
function login($login, $password) { | |
return true; | |
} | |
} | |
return new AdminerAutoLogin; | |
} | |
require_once("adminer.php"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much! It does the trick perfectly for me!