Created
June 20, 2016 07:20
-
-
Save linktohack/3a21da0eeebb2f9d0c9d6de8ae621195 to your computer and use it in GitHub Desktop.
Adminer 4.2.5 loader without password for SQLite
This file contains hidden or 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 | |
function adminer_object() { | |
class AdminerSoftware extends Adminer { | |
function login($login, $password) { | |
return true; | |
} | |
} | |
return new AdminerSoftware; | |
} | |
include "./adminer-4.2.5.php"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this work for me , Thanks !