├── includes ├── Config │ └── blank.php ├── environment.php ├── configuration.php ├── functions.php └── Class │ ├── Bulletins.class.php │ ├── SampQuery.class.php │ ├── QueryServer.class.php │ └── SampRcon.class.php ├── store └── 1525134156_1.txt ├── styles ├── images │ ├── favicon.png │ ├── samp_logo.png │ └── ajax-loader.gif └── server_console.css ├── resources ├── openssl.cnf ├── bootstrap.php ├── System │ ├── SSH_Agent.php │ └── SSH │ │ └── Agent.php ├── Crypt │ ├── AES.php │ ├── RC4.php │ ├── Random.php │ └── TripleDES.php ├── Net │ └── SCP.php └── File │ └── ANSI.php ├── .gitignore ├── views ├── login.view.php ├── footer.view.php ├── emergency.view.php ├── guestpage.view.php ├── header.view.php ├── settings.view.php ├── installation.view.php ├── bulletins.view.php └── tools.view.php ├── locked.php ├── login.php ├── LICENSE ├── controllers ├── login.ctrl.php ├── updates.ctrl.php ├── settings.ctrl.php ├── bulletins.ctrl.php ├── installation.ctrl.php └── server-actions.ctrl.php ├── install.php ├── index.php ├── README.md └── status.php /includes/Config/blank.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /store/1525134156_1.txt: -------------------------------------------------------------------------------- 1 | This is a sample text for the new installation of the Server Remote Console! -------------------------------------------------------------------------------- /styles/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxelweb/ServerRemoteConsoleSAMP/HEAD/styles/images/favicon.png -------------------------------------------------------------------------------- /styles/images/samp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxelweb/ServerRemoteConsoleSAMP/HEAD/styles/images/samp_logo.png -------------------------------------------------------------------------------- /styles/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxelweb/ServerRemoteConsoleSAMP/HEAD/styles/images/ajax-loader.gif -------------------------------------------------------------------------------- /resources/openssl.cnf: -------------------------------------------------------------------------------- 1 | # minimalist openssl.cnf file for use with phpseclib 2 | 3 | HOME = . 4 | RANDFILE = $ENV::HOME/.rnd 5 | 6 | [ v3_ca ] 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | includes/Config/parameters.config.php 3 | includes/Config/modes.config.php 4 | includes/Config/guestpage.config.php 5 | installed.lock 6 | -------------------------------------------------------------------------------- /views/login.view.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 |