Skip to content

Instantly share code, notes, and snippets.

@rogeriopradoj
Forked from realies/adminer autologin
Created April 10, 2019 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogeriopradoj/8562936b929c58a31789adc6a32f5850 to your computer and use it in GitHub Desktop.
Save rogeriopradoj/8562936b929c58a31789adc6a32f5850 to your computer and use it in GitHub Desktop.
A way to allow direct login to adminer
<?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