Go to file
Maurice ONeal 48b4c5b537 Major change to the build system and minor changes to SSL handling
- mutiple SSL cert files can now be added to the MRCI_PUB_KEY env variable
  via colon seperated ':' path strings to complete the cert chain if such
  a thing is required. It is no longer necessary to merge to multiple
  certs into one to complete a cert chain.

- added -load_ssl command line option so cert data can be re-loaded in
  real time without the need to stop-start the host.

- added more detailed error messages to the SSL loading process for
  easier debugging.

- major changes to the build system include the use of python scripts
  instead of the linux shell script file.

  - linux_build.sh was removed since it is no longer needed.
  - the new build process now run 2 python scripts: build.py and then
    install.py.
  - the resulting installer if built no longer uses makeself. the
    installation and/or self extracting process is now handled entirely
    by python and the install.py script.

  The main reason for this change is to lay the ground work for multi-
  platform support. It is still linux only for now but adding windows
  support will be much easier in the future thanks to python's cross-
  platform support.
2020-04-21 12:04:36 -04:00
docs Major change to the build system and minor changes to SSL handling 2020-04-21 12:04:36 -04:00
src Major change to the build system and minor changes to SSL handling 2020-04-21 12:04:36 -04:00
.gitignore Major change to the build system and minor changes to SSL handling 2020-04-21 12:04:36 -04:00
build.py Major change to the build system and minor changes to SSL handling 2020-04-21 12:04:36 -04:00
cmd_docs.qrc Few Updates to SSL Cert Handling 2020-04-05 15:51:11 -04:00
install.py Major change to the build system and minor changes to SSL handling 2020-04-21 12:04:36 -04:00
LICENSE.md Minor changes to the linux build script 2019-09-19 13:07:50 -04:00
MRCI.pro Major change to the build system and minor changes to SSL handling 2020-04-21 12:04:36 -04:00

MRCI

(Modular Remote Command Interpreter) is a command interpreter primarily designed to provide any type of remote service to connected clients. As the name implies, it is expandable via 3rd party modules by adding addtional commands that remote clients can run on the host. It has a fully feasured user account management system with access control to certain commands for certain users. All persistent data is handled by a SQLite database and all remote connections are handled via TCP and encrypted in SSL/TLS.

Usage

Usage: mrci <argument>

<Arguments>

 -help        : display usage information about this application.
 -stop        : stop the current host instance if one is currently running.
 -about       : display versioning/warranty information about this application.
 -addr        : set the listening address and port for TCP clients.
 -status      : display status information about the host instance if it is currently running.
 -reset_root  : reset the root account password to the default password.
 -host        : start a new host instance. (this blocks)
 -default_pw  : show the default password.
 -public_cmds : run the internal module to list it's public commands. for internal use only.
 -exempt_cmds : run the internal module to list it's rank exempt commands. for internal use only.
 -user_cmds   : run the internal module to list it's user commands. for internal use only.
 -run_cmd     : run an internal module command. for internal use only.
 -load_ssl    : re-load the host SSL certificate without stopping the host instance.

Internal module | -public_cmds, -user_cmds, -exempt_cmds, -run_cmd |:

 -pipe     : the named pipe used to establish a data connection with the session.
 -mem_ses  : the shared memory key for the session.
 -mem_host : the shared memory key for the host main process.

Details:

addr     - this argument takes a {ip_address:port} string. it will return an error if not formatted correctly
           examples: 10.102.9.2:35516 or 0.0.0.0:35516.

run_cmd  - this argument is used by the host itself, along side the internal module arguments below to run
           the internal command names passed by it. this is not ment to be run directly by human input.
           the executable will auto close if it fails to connect to the pipe and/or shared memory segments

The host can only be managed via a connected client that supports text input/output so the host application is always listening for clients while running entirely in the background. By default the host listen for clients on address 0.0.0.0 and port 35516, effectively making it reachable on any network interface of the host platform via that specific port.

Any one user account registered with the host can be given root privileges which basically gives this user unrestricted access to anything in the host for administrative purposes. When a host instance is created for the first time, it will create a new user account called 'root' with a randomized default password. To find out what the default password is, run -default_pw. When logging in for the fist time, the host will require you to change the user name and password before continuing.

More Than Just a Command Interpreter

Typical use for a MRCI host is to run commands on a remote host that clients ask it to run, very similar to what you see in remote terminal emulators. It however does have a few feasures typically not seen in terminals:

  • Broadcast any type of data to all peers connected to the host.
  • Run remote commands on connected peers.
  • Host object positioning data for peers (online games do this).
  • Send data to/from a peer client directly.
  • Fully feasured user account management system.
  • Built in permissions and command access management.
  • Host limits management (max concurrent users, max failed password attempts, etc...).
  • Account recovery emailing in case of forgotten passwords. **
  • Acesss to various logs.
  • Built in host file management (copy, move, delete, etc...).
  • Built in file upload/download support.

Because the host is modular, the things you can customize it to do is almost limitless by simply adding more commands.

** The email system of this application depends on external email clients that run on the command line. The default is mutt. If you want emails to work out of the box, consider installing and configuring mutt. It just needs to be configured with a smtp account to send emails with. You don't have to use mutt though, the host does have options to change the email client to any other application that has a command line interface.

Documentation

Build Setup

For Linux you need the following packages to successfully build/install:

qtbase5-dev
libssl-dev
gcc
make
python3

Windows support is still work in progress but the following applications will must likely need to be installed:

OpenSSL
Qt5.12 or newer
Python3

Build

To build this project from source you just need to run the build.py and then the install.py python scripts. While running the build the script, it will try to find the Qt API installed in your machine according to the PATH env variable. If not found, it will ask you to input where it can find the Qt bin folder where the qmake executable exists or you can bypass all of this by passing the -qt_dir option on it's command line.

while running the install script, it will ask you to input 1 of 3 options:

local machine - This option will install the built application onto the local machine without creating an installer.

create installer - This option creates an installer that can be distributed to other machines to installation. The resulting installer is just a regular .py script file that the target machine can run if it has Python3 insalled. Only Python3 needs to be installed and an internet connection is not required.

exit - Cancel the installation.

-local or -installer can be passed as command line options for install.py to explicitly select one of the above options without pausing for user input.

Services

If a target linux system supports systemd, the application will be installed as a background daemon that can start/stop with the following commands:

sudo systemctl start mrci
sudo systemctl stop mrci