Skip to content

Instantly share code, notes, and snippets.

@cavearr
Forked from linktohack/index.php
Created March 21, 2019 23:26
Show Gist options
  • Save cavearr/3360a88ea4a613177774334c79651e29 to your computer and use it in GitHub Desktop.
Save cavearr/3360a88ea4a613177774334c79651e29 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";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment