encrypted terminal chat with file xfer, shared terminal acess, sandbox vm supporitn docker, multipass and virtualbox. also local ai model integration.
Go to file
2022-12-01 09:52:25 +03:00
.gitignore Crypting: Done crypting pipeline and add some crypting code 2022-07-02 08:30:37 +03:00
client.py Client: Add server addres input 2022-07-06 08:08:24 +03:00
preview.png Update picture 2022-07-04 05:45:23 +03:00
readme.MD Update readme.MD 2022-12-01 09:52:25 +03:00
reqs.txt Crypting: Add rsa crypting. Add symmetric keys. Mvp is ready 2022-07-02 23:52:54 +03:00
run_server.sh Create bash script to runserver 2022-12-01 09:50:57 +03:00
server.py Crypting: Add rsa crypting. Add symmetric keys. Mvp is ready 2022-07-02 23:52:54 +03:00

here is secured online chat what can be runned in cmd

preview

how to run server on linux:

  • chmod +x run_server.sh
  • ./run_server.sh 2121 # or any other port

how to run server on windows 10 / 11 in powershell

  • python -m venv venv
  • venv/scripts/Activate
  • pip install -r reqs.txt
  • sanic server.app -H 0.0.0.0 -p

how to run clear client

  • python -m venv venv
  • venv/scripts/Activate
  • pip install -r reqs.txt
  • python client.py

crypting pipeline

  • Client making priv key
  • Server making symmetric key
  • Client sending public key to server
  • Server crypting symmetric key and sending to client
  • Client encrypting private key
  • And than communicate with server via
  • symmetric key

to do

  • interface for choosing server in client
  • double password user verification
  • white list