├── .gitattributes ├── .gitignore ├── DB.sql ├── README.md ├── SECURITY.md ├── admin ├── cheat.php ├── includes │ └── adminNavbar.inc.php ├── index.php ├── invites.php ├── sub.php └── users.php ├── api.php ├── app ├── controllers │ ├── adminController.php │ ├── apiController.php │ ├── authController.php │ ├── cheatController.php │ └── userController.php ├── core │ ├── Config.php │ └── Database.php ├── helpers │ ├── SessionHelper.php │ ├── UtilHelper.php │ └── ValidatorHelper.php ├── models │ ├── Admin.php │ ├── Api.php │ ├── Cheat.php │ ├── Invite.php │ ├── Subscription.php │ └── User.php └── require.php ├── assets ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map └── css │ └── custom.css ├── banned.php ├── download.php ├── includes ├── footer.inc.php ├── head.inc.php └── navbar.inc.php ├── index.php ├── login.php ├── logout.php ├── profile.php └── register.php /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/DB.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/SECURITY.md -------------------------------------------------------------------------------- /admin/cheat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/admin/cheat.php -------------------------------------------------------------------------------- /admin/includes/adminNavbar.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/admin/includes/adminNavbar.inc.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/invites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/admin/invites.php -------------------------------------------------------------------------------- /admin/sub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/admin/sub.php -------------------------------------------------------------------------------- /admin/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/admin/users.php -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/api.php -------------------------------------------------------------------------------- /app/controllers/adminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/controllers/adminController.php -------------------------------------------------------------------------------- /app/controllers/apiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/controllers/apiController.php -------------------------------------------------------------------------------- /app/controllers/authController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/controllers/authController.php -------------------------------------------------------------------------------- /app/controllers/cheatController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/controllers/cheatController.php -------------------------------------------------------------------------------- /app/controllers/userController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/controllers/userController.php -------------------------------------------------------------------------------- /app/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/core/Config.php -------------------------------------------------------------------------------- /app/core/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/core/Database.php -------------------------------------------------------------------------------- /app/helpers/SessionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/helpers/SessionHelper.php -------------------------------------------------------------------------------- /app/helpers/UtilHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/helpers/UtilHelper.php -------------------------------------------------------------------------------- /app/helpers/ValidatorHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/helpers/ValidatorHelper.php -------------------------------------------------------------------------------- /app/models/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/models/Admin.php -------------------------------------------------------------------------------- /app/models/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/models/Api.php -------------------------------------------------------------------------------- /app/models/Cheat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/models/Cheat.php -------------------------------------------------------------------------------- /app/models/Invite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/models/Invite.php -------------------------------------------------------------------------------- /app/models/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/models/Subscription.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/require.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/app/require.php -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/assets/css/custom.css -------------------------------------------------------------------------------- /banned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/banned.php -------------------------------------------------------------------------------- /download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/download.php -------------------------------------------------------------------------------- /includes/footer.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/includes/footer.inc.php -------------------------------------------------------------------------------- /includes/head.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/includes/head.inc.php -------------------------------------------------------------------------------- /includes/navbar.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/includes/navbar.inc.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/index.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/logout.php -------------------------------------------------------------------------------- /profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/profile.php -------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znixbtw/php-panel-v2/HEAD/register.php --------------------------------------------------------------------------------