encrypted terminal chat with file xfer, shared terminal acess, sandbox vm supporitn docker, multipass and virtualbox. also local ai model integration.
Go to file
2025-09-10 16:15:55 +03:00
cmd_chat Working on 1.1.22 2023-12-03 16:18:09 +03:00
.gitignore Update README & pypi 2023-03-08 19:38:28 +03:00
cmd_chat.py Reworked setup.py, now you can run cmd_chat directly. Reworked sanic http webserver to make it work. Update readme, etc... 2023-11-27 14:30:01 +03:00
example.gif Add gif to readme with example 2022-12-01 11:36:48 +03:00
LICENSE Code refactoring 2023-03-08 18:59:38 +03:00
README.MD Update README.MD 2025-09-10 16:15:55 +03:00
requirements.txt Working on 1.1.22 2023-12-03 16:18:09 +03:00
setup.py Working on 1.1.22 2023-12-03 16:18:09 +03:00

CMD CHAT

A console chat with encrypted messaging.

How it works

  1. The client generates a private key.
  2. The server generates a symmetric key.
  3. The client sends its public key to the server.
  4. The server encrypts the symmetric key and sends it back to the client.
  5. The client encrypts the private key.
  6. From then on, communication with the server happens via the symmetric key.

Installation & Run

Option 1: Python

pip install secured_console_chat
import asyncio 
import cmd_chat

if __name__ == '__main__':
    asyncio.run(cmd_chat.run())

Option 2: CLI

Start the server:

cmd_chat serve localhost 5000

Connect to the server:

cmd_chat connect localhost 5000 tyler

Example

Alt Text