Skip to content

Instantly share code, notes, and snippets.

@linktohack
Created June 20, 2016 07:20
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save linktohack/3a21da0eeebb2f9d0c9d6de8ae621195 to your computer and use it in GitHub Desktop.
Save linktohack/3a21da0eeebb2f9d0c9d6de8ae621195 to your computer and use it in GitHub Desktop.
Adminer 4.2.5 loader without password for SQLite
<?php
function adminer_object() {
class AdminerSoftware extends Adminer {
function login($login, $password) {
return true;
}
}
return new AdminerSoftware;
}
include "./adminer-4.2.5.php";
@jackycms
Copy link

this work for me , Thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment