├── .gitattributes ├── .ssh ├── .htaccess └── passphrase ├── .version ├── .htaccess └── version.xml ├── CHANGELOG.txt ├── CONTRIBUTORS.txt ├── LICENSE-HIGHSOFT-SOFTWARE.txt ├── LICENSE.txt ├── README-041-UPDATE.txt ├── README.txt ├── admin ├── .htaccess ├── api.boxdata.json.php ├── bootstrap │ ├── footer.php │ ├── header.php │ ├── index.php │ └── notifications.php ├── box.php ├── boxadd.php ├── boxchart.php ├── boxgamefile.php ├── boxip.php ├── boxlog.php ├── boxprocess.php ├── boxprofile.php ├── boxserver.php ├── boxsummary.php ├── client.php ├── clientadd.php ├── clientlog.php ├── clientprocess.php ├── clientprofile.php ├── clientserver.php ├── clientsummary.php ├── configadmin.php ├── configadminadd.php ├── configadminedit.php ├── configadminprocess.php ├── configcron.php ├── configgame.php ├── configgameadd.php ├── configgameedit.php ├── configgameprocess.php ├── configgeneral.php ├── configgeneralprocess.php ├── configgroup.php ├── configgroupadd.php ├── configgroupedit.php ├── configgroupprocess.php ├── cron.php ├── include.php ├── index.php ├── login.php ├── loginmaintenance.php ├── loginprocess.php ├── loginsuspended.php ├── myaccount.php ├── process.php ├── script.php ├── scriptadd.php ├── scriptcatadd.php ├── scriptcatedit.php ├── scriptcatmanage.php ├── scriptconsole.php ├── scriptprocess.php ├── scriptprofile.php ├── scriptsummary.php ├── server.php ├── serveradd.php ├── serverlgsl.php ├── serverlog.php ├── servermanage.php ├── serverprocess.php ├── serverprocess2.php ├── serverprofile.php ├── serversummary.php ├── systemlicense.php ├── utilitieslog.php ├── utilitieslogprocess.php ├── utilitiesoptimize.php ├── utilitiesoptimizeprocess.php ├── utilitiesphpinfo.php ├── utilitiesrcontool.php └── utilitiesversion.php ├── bootstrap ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap.css │ ├── cerulean.css │ ├── cosmo.css │ ├── cyborg.css │ ├── index.php │ ├── prettify.css │ ├── simplex.css │ ├── slate.css │ ├── sorter-dark.css │ ├── sorter.css │ ├── spacelab.css │ └── united.css ├── footer.php ├── gfx │ ├── index.php │ └── vml-radial-gradient.png ├── header.php ├── img │ ├── arrow.png │ ├── arrowicon-white.png │ ├── asc.gif │ ├── asc2.gif │ ├── bg.gif │ ├── bg2.gif │ ├── data1.png │ ├── data2.png │ ├── desc.gif │ ├── desc2.gif │ ├── favicon.ico │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── index.php │ ├── logo.png │ ├── nodata.png │ └── wait.gif ├── index.php ├── js │ ├── adapters │ │ ├── index.php │ │ ├── mootools-adapter.js │ │ └── prototype-adapter.js │ ├── bootstrap.js │ ├── google-code-prettify │ │ ├── index.php │ │ └── prettify.js │ ├── highcharts-more.js │ ├── highstock.js │ ├── index.php │ ├── jquery.js │ ├── jquery.lazyload.min.js │ ├── jquery.tablesorter.min.js │ ├── modules │ │ ├── annotations.js │ │ ├── canvas-tools.js │ │ ├── data.js │ │ ├── exporting.js │ │ ├── funnel.js │ │ ├── heatmap.js │ │ ├── index.php │ │ └── map.js │ └── themes │ │ ├── dark-blue.js │ │ ├── dark-green.js │ │ ├── gray.js │ │ ├── grid.js │ │ └── index.php └── notifications.php ├── captcha ├── index.php └── securimage_show.php ├── configuration.php ├── favicon.ico ├── gpl-3.0.txt ├── include.php ├── includes ├── .htaccess ├── func.auth.inc.php ├── func.gameinstaller.inc.php ├── func.groups.inc.php ├── func.lang.inc.php ├── func.misc.inc.php ├── func.ssh2.inc.php ├── func.style.inc.php ├── functions.php ├── mysql.php └── templates.php ├── index.php ├── install ├── CHANGELOG.txt ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap.css │ │ └── index.php │ ├── img │ │ ├── favicon.ico │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── index.php │ ├── index.php │ └── js │ │ ├── bootstrap.js │ │ ├── index.php │ │ └── jquery.js ├── inc │ ├── mysql.php │ └── versions.php ├── index.php └── sql │ ├── full.php │ ├── index.php │ ├── update_010_to_011.php │ ├── update_011_to_030.php │ ├── update_030_to_035.php │ ├── update_035_to_039.php │ ├── update_039_to_040.php │ ├── update_040_to_041.php │ └── update_041_to_045.php ├── libs ├── .htaccess ├── gameinstaller │ ├── actions.list.txt │ ├── files.info.txt │ ├── gameinstaller.php │ ├── games.ini │ └── games │ │ ├── minecraft │ │ └── manifest.xml │ │ ├── mta │ │ └── manifest.xml │ │ └── samp │ │ └── manifest.xml ├── lgsl │ ├── lgsl_class.php │ ├── lgsl_config.php │ └── lgsl_protocol.php ├── pchart │ ├── class │ │ ├── pBubble.class.php │ │ ├── pCache.class.php │ │ ├── pData.class.php │ │ ├── pDraw.class.php │ │ ├── pImage.class.php │ │ ├── pPie.class.php │ │ ├── pRadar.class.php │ │ ├── pScatter.class.php │ │ ├── pSplit.class.php │ │ └── pSurface.class.php │ ├── data │ │ ├── 128B.db │ │ └── 39.db │ ├── fonts │ │ ├── Forgotte.ttf │ │ └── pf_arma_five.ttf │ └── palettes │ │ ├── autumn.color │ │ ├── blind.color │ │ ├── evening.color │ │ ├── kitchen.color │ │ ├── light.color │ │ ├── navy.color │ │ ├── shade.color │ │ ├── spring.color │ │ └── summer.color ├── php-gettext │ ├── gettext.inc.php │ ├── gettext.php │ └── streams.php ├── phpseclib │ ├── ANSI.php │ ├── AUTHORS │ ├── Crypt │ │ ├── AES.php │ │ ├── Base.php │ │ ├── Blowfish.php │ │ ├── DES.php │ │ ├── Hash.php │ │ ├── RC4.php │ │ ├── RSA.php │ │ ├── Random.php │ │ ├── Rijndael.php │ │ ├── TripleDES.php │ │ └── Twofish.php │ ├── LICENSE │ ├── Math │ │ └── BigInteger.php │ ├── README.md │ ├── SFTP.php │ ├── SSH2.php │ ├── build.txt │ └── openssl.cnf └── securimage │ ├── AHGBold.ttf │ ├── LICENSE.txt │ ├── README.FONT.txt │ ├── README.txt │ ├── backgrounds │ ├── bg3.jpg │ ├── bg4.jpg │ ├── bg5.jpg │ └── bg6.png │ ├── database │ ├── .htaccess │ ├── index.html │ └── securimage.sq3 │ ├── securimage.php │ └── words │ └── words.txt ├── locale ├── .htaccess ├── en_EN │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── es_ES │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fr_FR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── nl_NL │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pl_PL │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── ru_RU │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── login.php ├── loginprocess.php ├── loginsuspended.php ├── myaccount.php ├── process.php ├── robots.txt ├── scriptconsole.php ├── scriptprocess.php ├── scriptsummary.php ├── server.php ├── serverprocess.php └── utilitiesrcontool.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.ssh/.htaccess: -------------------------------------------------------------------------------- 1 | AuthName "403" 2 | deny from all -------------------------------------------------------------------------------- /.ssh/passphrase: -------------------------------------------------------------------------------- 1 | isEmpty = TRUE; -------------------------------------------------------------------------------- /.version/.htaccess: -------------------------------------------------------------------------------- 1 | AuthName "403" 2 | deny from all -------------------------------------------------------------------------------- /.version/version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/.version/version.xml -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE-HIGHSOFT-SOFTWARE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/LICENSE-HIGHSOFT-SOFTWARE.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-041-UPDATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/README-041-UPDATE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/README.txt -------------------------------------------------------------------------------- /admin/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/.htaccess -------------------------------------------------------------------------------- /admin/api.boxdata.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/api.boxdata.json.php -------------------------------------------------------------------------------- /admin/bootstrap/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/bootstrap/footer.php -------------------------------------------------------------------------------- /admin/bootstrap/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/bootstrap/header.php -------------------------------------------------------------------------------- /admin/bootstrap/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /admin/bootstrap/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/bootstrap/notifications.php -------------------------------------------------------------------------------- /admin/box.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/box.php -------------------------------------------------------------------------------- /admin/boxadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxadd.php -------------------------------------------------------------------------------- /admin/boxchart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxchart.php -------------------------------------------------------------------------------- /admin/boxgamefile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxgamefile.php -------------------------------------------------------------------------------- /admin/boxip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxip.php -------------------------------------------------------------------------------- /admin/boxlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxlog.php -------------------------------------------------------------------------------- /admin/boxprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxprocess.php -------------------------------------------------------------------------------- /admin/boxprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxprofile.php -------------------------------------------------------------------------------- /admin/boxserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxserver.php -------------------------------------------------------------------------------- /admin/boxsummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/boxsummary.php -------------------------------------------------------------------------------- /admin/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/client.php -------------------------------------------------------------------------------- /admin/clientadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/clientadd.php -------------------------------------------------------------------------------- /admin/clientlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/clientlog.php -------------------------------------------------------------------------------- /admin/clientprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/clientprocess.php -------------------------------------------------------------------------------- /admin/clientprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/clientprofile.php -------------------------------------------------------------------------------- /admin/clientserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/clientserver.php -------------------------------------------------------------------------------- /admin/clientsummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/clientsummary.php -------------------------------------------------------------------------------- /admin/configadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configadmin.php -------------------------------------------------------------------------------- /admin/configadminadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configadminadd.php -------------------------------------------------------------------------------- /admin/configadminedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configadminedit.php -------------------------------------------------------------------------------- /admin/configadminprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configadminprocess.php -------------------------------------------------------------------------------- /admin/configcron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configcron.php -------------------------------------------------------------------------------- /admin/configgame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgame.php -------------------------------------------------------------------------------- /admin/configgameadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgameadd.php -------------------------------------------------------------------------------- /admin/configgameedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgameedit.php -------------------------------------------------------------------------------- /admin/configgameprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgameprocess.php -------------------------------------------------------------------------------- /admin/configgeneral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgeneral.php -------------------------------------------------------------------------------- /admin/configgeneralprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgeneralprocess.php -------------------------------------------------------------------------------- /admin/configgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgroup.php -------------------------------------------------------------------------------- /admin/configgroupadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgroupadd.php -------------------------------------------------------------------------------- /admin/configgroupedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgroupedit.php -------------------------------------------------------------------------------- /admin/configgroupprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/configgroupprocess.php -------------------------------------------------------------------------------- /admin/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/cron.php -------------------------------------------------------------------------------- /admin/include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/include.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/login.php -------------------------------------------------------------------------------- /admin/loginmaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/loginmaintenance.php -------------------------------------------------------------------------------- /admin/loginprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/loginprocess.php -------------------------------------------------------------------------------- /admin/loginsuspended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/loginsuspended.php -------------------------------------------------------------------------------- /admin/myaccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/myaccount.php -------------------------------------------------------------------------------- /admin/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/process.php -------------------------------------------------------------------------------- /admin/script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/script.php -------------------------------------------------------------------------------- /admin/scriptadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/scriptadd.php -------------------------------------------------------------------------------- /admin/scriptcatadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/scriptcatadd.php -------------------------------------------------------------------------------- /admin/scriptcatedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/scriptcatedit.php -------------------------------------------------------------------------------- /admin/scriptcatmanage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/scriptcatmanage.php -------------------------------------------------------------------------------- /admin/scriptconsole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/scriptconsole.php -------------------------------------------------------------------------------- /admin/scriptprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/scriptprocess.php -------------------------------------------------------------------------------- /admin/scriptprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/scriptprofile.php -------------------------------------------------------------------------------- /admin/scriptsummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/scriptsummary.php -------------------------------------------------------------------------------- /admin/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/server.php -------------------------------------------------------------------------------- /admin/serveradd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/serveradd.php -------------------------------------------------------------------------------- /admin/serverlgsl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/serverlgsl.php -------------------------------------------------------------------------------- /admin/serverlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/serverlog.php -------------------------------------------------------------------------------- /admin/servermanage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/servermanage.php -------------------------------------------------------------------------------- /admin/serverprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/serverprocess.php -------------------------------------------------------------------------------- /admin/serverprocess2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/serverprocess2.php -------------------------------------------------------------------------------- /admin/serverprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/serverprofile.php -------------------------------------------------------------------------------- /admin/serversummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/serversummary.php -------------------------------------------------------------------------------- /admin/systemlicense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/systemlicense.php -------------------------------------------------------------------------------- /admin/utilitieslog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/utilitieslog.php -------------------------------------------------------------------------------- /admin/utilitieslogprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/utilitieslogprocess.php -------------------------------------------------------------------------------- /admin/utilitiesoptimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/utilitiesoptimize.php -------------------------------------------------------------------------------- /admin/utilitiesoptimizeprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/utilitiesoptimizeprocess.php -------------------------------------------------------------------------------- /admin/utilitiesphpinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/utilitiesphpinfo.php -------------------------------------------------------------------------------- /admin/utilitiesrcontool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/utilitiesrcontool.php -------------------------------------------------------------------------------- /admin/utilitiesversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/admin/utilitiesversion.php -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap/css/cerulean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/cerulean.css -------------------------------------------------------------------------------- /bootstrap/css/cosmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/cosmo.css -------------------------------------------------------------------------------- /bootstrap/css/cyborg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/cyborg.css -------------------------------------------------------------------------------- /bootstrap/css/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/prettify.css -------------------------------------------------------------------------------- /bootstrap/css/simplex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/simplex.css -------------------------------------------------------------------------------- /bootstrap/css/slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/slate.css -------------------------------------------------------------------------------- /bootstrap/css/sorter-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/sorter-dark.css -------------------------------------------------------------------------------- /bootstrap/css/sorter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/sorter.css -------------------------------------------------------------------------------- /bootstrap/css/spacelab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/spacelab.css -------------------------------------------------------------------------------- /bootstrap/css/united.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/css/united.css -------------------------------------------------------------------------------- /bootstrap/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/footer.php -------------------------------------------------------------------------------- /bootstrap/gfx/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/gfx/vml-radial-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/gfx/vml-radial-gradient.png -------------------------------------------------------------------------------- /bootstrap/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/header.php -------------------------------------------------------------------------------- /bootstrap/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/arrow.png -------------------------------------------------------------------------------- /bootstrap/img/arrowicon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/arrowicon-white.png -------------------------------------------------------------------------------- /bootstrap/img/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/asc.gif -------------------------------------------------------------------------------- /bootstrap/img/asc2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/asc2.gif -------------------------------------------------------------------------------- /bootstrap/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/bg.gif -------------------------------------------------------------------------------- /bootstrap/img/bg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/bg2.gif -------------------------------------------------------------------------------- /bootstrap/img/data1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/data1.png -------------------------------------------------------------------------------- /bootstrap/img/data2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/data2.png -------------------------------------------------------------------------------- /bootstrap/img/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/desc.gif -------------------------------------------------------------------------------- /bootstrap/img/desc2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/desc2.gif -------------------------------------------------------------------------------- /bootstrap/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/favicon.ico -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /bootstrap/img/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/logo.png -------------------------------------------------------------------------------- /bootstrap/img/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/nodata.png -------------------------------------------------------------------------------- /bootstrap/img/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/img/wait.gif -------------------------------------------------------------------------------- /bootstrap/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/js/adapters/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/js/adapters/mootools-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/adapters/mootools-adapter.js -------------------------------------------------------------------------------- /bootstrap/js/adapters/prototype-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/adapters/prototype-adapter.js -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap/js/google-code-prettify/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/js/google-code-prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/google-code-prettify/prettify.js -------------------------------------------------------------------------------- /bootstrap/js/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/highcharts-more.js -------------------------------------------------------------------------------- /bootstrap/js/highstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/highstock.js -------------------------------------------------------------------------------- /bootstrap/js/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/jquery.js -------------------------------------------------------------------------------- /bootstrap/js/jquery.lazyload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/jquery.lazyload.min.js -------------------------------------------------------------------------------- /bootstrap/js/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /bootstrap/js/modules/annotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/modules/annotations.js -------------------------------------------------------------------------------- /bootstrap/js/modules/canvas-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/modules/canvas-tools.js -------------------------------------------------------------------------------- /bootstrap/js/modules/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/modules/data.js -------------------------------------------------------------------------------- /bootstrap/js/modules/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/modules/exporting.js -------------------------------------------------------------------------------- /bootstrap/js/modules/funnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/modules/funnel.js -------------------------------------------------------------------------------- /bootstrap/js/modules/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/modules/heatmap.js -------------------------------------------------------------------------------- /bootstrap/js/modules/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/js/modules/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/modules/map.js -------------------------------------------------------------------------------- /bootstrap/js/themes/dark-blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/themes/dark-blue.js -------------------------------------------------------------------------------- /bootstrap/js/themes/dark-green.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/themes/dark-green.js -------------------------------------------------------------------------------- /bootstrap/js/themes/gray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/themes/gray.js -------------------------------------------------------------------------------- /bootstrap/js/themes/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/js/themes/grid.js -------------------------------------------------------------------------------- /bootstrap/js/themes/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /bootstrap/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/bootstrap/notifications.php -------------------------------------------------------------------------------- /captcha/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /captcha/securimage_show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/captcha/securimage_show.php -------------------------------------------------------------------------------- /configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/configuration.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/favicon.ico -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/include.php -------------------------------------------------------------------------------- /includes/.htaccess: -------------------------------------------------------------------------------- 1 | AuthName "403" 2 | deny from all -------------------------------------------------------------------------------- /includes/func.auth.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/func.auth.inc.php -------------------------------------------------------------------------------- /includes/func.gameinstaller.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/func.gameinstaller.inc.php -------------------------------------------------------------------------------- /includes/func.groups.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/func.groups.inc.php -------------------------------------------------------------------------------- /includes/func.lang.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/func.lang.inc.php -------------------------------------------------------------------------------- /includes/func.misc.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/func.misc.inc.php -------------------------------------------------------------------------------- /includes/func.ssh2.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/func.ssh2.inc.php -------------------------------------------------------------------------------- /includes/func.style.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/func.style.inc.php -------------------------------------------------------------------------------- /includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/functions.php -------------------------------------------------------------------------------- /includes/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/mysql.php -------------------------------------------------------------------------------- /includes/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/includes/templates.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/index.php -------------------------------------------------------------------------------- /install/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/CHANGELOG.txt -------------------------------------------------------------------------------- /install/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /install/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /install/bootstrap/css/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /install/bootstrap/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/bootstrap/img/favicon.ico -------------------------------------------------------------------------------- /install/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /install/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /install/bootstrap/img/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /install/bootstrap/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /install/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /install/bootstrap/js/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /install/bootstrap/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/bootstrap/js/jquery.js -------------------------------------------------------------------------------- /install/inc/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/inc/mysql.php -------------------------------------------------------------------------------- /install/inc/versions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/inc/versions.php -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/index.php -------------------------------------------------------------------------------- /install/sql/full.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/sql/full.php -------------------------------------------------------------------------------- /install/sql/index.php: -------------------------------------------------------------------------------- 1 | 403 Forbidden"); 3 | ?> -------------------------------------------------------------------------------- /install/sql/update_010_to_011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/sql/update_010_to_011.php -------------------------------------------------------------------------------- /install/sql/update_011_to_030.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/sql/update_011_to_030.php -------------------------------------------------------------------------------- /install/sql/update_030_to_035.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/sql/update_030_to_035.php -------------------------------------------------------------------------------- /install/sql/update_035_to_039.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/sql/update_035_to_039.php -------------------------------------------------------------------------------- /install/sql/update_039_to_040.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/sql/update_039_to_040.php -------------------------------------------------------------------------------- /install/sql/update_040_to_041.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/sql/update_040_to_041.php -------------------------------------------------------------------------------- /install/sql/update_041_to_045.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/install/sql/update_041_to_045.php -------------------------------------------------------------------------------- /libs/.htaccess: -------------------------------------------------------------------------------- 1 | AuthName "403" 2 | deny from all -------------------------------------------------------------------------------- /libs/gameinstaller/actions.list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/gameinstaller/actions.list.txt -------------------------------------------------------------------------------- /libs/gameinstaller/files.info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/gameinstaller/files.info.txt -------------------------------------------------------------------------------- /libs/gameinstaller/gameinstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/gameinstaller/gameinstaller.php -------------------------------------------------------------------------------- /libs/gameinstaller/games.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/gameinstaller/games.ini -------------------------------------------------------------------------------- /libs/gameinstaller/games/minecraft/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/gameinstaller/games/minecraft/manifest.xml -------------------------------------------------------------------------------- /libs/gameinstaller/games/mta/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/gameinstaller/games/mta/manifest.xml -------------------------------------------------------------------------------- /libs/gameinstaller/games/samp/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/gameinstaller/games/samp/manifest.xml -------------------------------------------------------------------------------- /libs/lgsl/lgsl_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/lgsl/lgsl_class.php -------------------------------------------------------------------------------- /libs/lgsl/lgsl_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/lgsl/lgsl_config.php -------------------------------------------------------------------------------- /libs/lgsl/lgsl_protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/lgsl/lgsl_protocol.php -------------------------------------------------------------------------------- /libs/pchart/class/pBubble.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pBubble.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pCache.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pCache.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pData.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pDraw.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pDraw.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pImage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pImage.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pPie.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pPie.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pRadar.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pRadar.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pScatter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pScatter.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pSplit.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pSplit.class.php -------------------------------------------------------------------------------- /libs/pchart/class/pSurface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/class/pSurface.class.php -------------------------------------------------------------------------------- /libs/pchart/data/128B.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/data/128B.db -------------------------------------------------------------------------------- /libs/pchart/data/39.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/data/39.db -------------------------------------------------------------------------------- /libs/pchart/fonts/Forgotte.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/fonts/Forgotte.ttf -------------------------------------------------------------------------------- /libs/pchart/fonts/pf_arma_five.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/fonts/pf_arma_five.ttf -------------------------------------------------------------------------------- /libs/pchart/palettes/autumn.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/autumn.color -------------------------------------------------------------------------------- /libs/pchart/palettes/blind.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/blind.color -------------------------------------------------------------------------------- /libs/pchart/palettes/evening.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/evening.color -------------------------------------------------------------------------------- /libs/pchart/palettes/kitchen.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/kitchen.color -------------------------------------------------------------------------------- /libs/pchart/palettes/light.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/light.color -------------------------------------------------------------------------------- /libs/pchart/palettes/navy.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/navy.color -------------------------------------------------------------------------------- /libs/pchart/palettes/shade.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/shade.color -------------------------------------------------------------------------------- /libs/pchart/palettes/spring.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/spring.color -------------------------------------------------------------------------------- /libs/pchart/palettes/summer.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/pchart/palettes/summer.color -------------------------------------------------------------------------------- /libs/php-gettext/gettext.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/php-gettext/gettext.inc.php -------------------------------------------------------------------------------- /libs/php-gettext/gettext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/php-gettext/gettext.php -------------------------------------------------------------------------------- /libs/php-gettext/streams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/php-gettext/streams.php -------------------------------------------------------------------------------- /libs/phpseclib/ANSI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/ANSI.php -------------------------------------------------------------------------------- /libs/phpseclib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/AUTHORS -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/AES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/AES.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/Base.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/Blowfish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/Blowfish.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/DES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/DES.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/Hash.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/RC4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/RC4.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/RSA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/RSA.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/Random.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/Rijndael.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/Rijndael.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/TripleDES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/TripleDES.php -------------------------------------------------------------------------------- /libs/phpseclib/Crypt/Twofish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Crypt/Twofish.php -------------------------------------------------------------------------------- /libs/phpseclib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/LICENSE -------------------------------------------------------------------------------- /libs/phpseclib/Math/BigInteger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/Math/BigInteger.php -------------------------------------------------------------------------------- /libs/phpseclib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/README.md -------------------------------------------------------------------------------- /libs/phpseclib/SFTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/SFTP.php -------------------------------------------------------------------------------- /libs/phpseclib/SSH2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/SSH2.php -------------------------------------------------------------------------------- /libs/phpseclib/build.txt: -------------------------------------------------------------------------------- 1 | 2 | Build 3 | 364 4 | -------------------------------------------------------------------------------- /libs/phpseclib/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/phpseclib/openssl.cnf -------------------------------------------------------------------------------- /libs/securimage/AHGBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/AHGBold.ttf -------------------------------------------------------------------------------- /libs/securimage/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/LICENSE.txt -------------------------------------------------------------------------------- /libs/securimage/README.FONT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/README.FONT.txt -------------------------------------------------------------------------------- /libs/securimage/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/README.txt -------------------------------------------------------------------------------- /libs/securimage/backgrounds/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/backgrounds/bg3.jpg -------------------------------------------------------------------------------- /libs/securimage/backgrounds/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/backgrounds/bg4.jpg -------------------------------------------------------------------------------- /libs/securimage/backgrounds/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/backgrounds/bg5.jpg -------------------------------------------------------------------------------- /libs/securimage/backgrounds/bg6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/backgrounds/bg6.png -------------------------------------------------------------------------------- /libs/securimage/database/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /libs/securimage/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/securimage/database/securimage.sq3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/database/securimage.sq3 -------------------------------------------------------------------------------- /libs/securimage/securimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/securimage.php -------------------------------------------------------------------------------- /libs/securimage/words/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/libs/securimage/words/words.txt -------------------------------------------------------------------------------- /locale/.htaccess: -------------------------------------------------------------------------------- 1 | AuthName "403" 2 | deny from all -------------------------------------------------------------------------------- /locale/en_EN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/en_EN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/en_EN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/en_EN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/es_ES/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/es_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/fr_FR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/fr_FR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/nl_NL/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/nl_NL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pl_PL/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/pl_PL/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/pl_PL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/pl_PL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/ru_RU/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/locale/ru_RU/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/login.php -------------------------------------------------------------------------------- /loginprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/loginprocess.php -------------------------------------------------------------------------------- /loginsuspended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/loginsuspended.php -------------------------------------------------------------------------------- /myaccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/myaccount.php -------------------------------------------------------------------------------- /process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/process.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # Allow no bots on the site 2 | User-agent: * 3 | Disallow: / -------------------------------------------------------------------------------- /scriptconsole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/scriptconsole.php -------------------------------------------------------------------------------- /scriptprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/scriptprocess.php -------------------------------------------------------------------------------- /scriptsummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/scriptsummary.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/server.php -------------------------------------------------------------------------------- /serverprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/serverprocess.php -------------------------------------------------------------------------------- /utilitiesrcontool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightGamePanel/bgpanel/HEAD/utilitiesrcontool.php --------------------------------------------------------------------------------