Giter Site home page Giter Site logo

tomholford / cryptboard.io Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mihanentalpo/cryptboard.io

0.0 1.0 0.0 5.49 MB

Web clipboard and simple messanger with end-to-end encryption

License: MIT License

Shell 0.05% JavaScript 74.87% PHP 2.85% CSS 5.17% Hack 0.47% Less 7.90% SCSS 8.69%

cryptboard.io's Introduction

CryptBoard.io - anonymous encrypted web clipboard and chat

Cryptboard.io allows to send text messages and files between multiple devices

Website: https://cryptboard.io/

Screenshot of a clipboard page

Why would I need it?

  • To copy and paste text/files between Host and Virtual machine where clipboard not supported
  • To copy and paste text/files into Remote Desktop, such as VMWare Horizon, RDP, and others where clipboard doesn't work or disabled (I personally started to create this tool just to solve the problem of disabled clipboard sharing on customer's VMWare Horizon)
  • To send valuable data such as passwords or some security keys and tokens without danger of it being intercepted
  • To exchange information in a hostile environment where the server could be evil and yet not giving it a chance to decrypt messages
  • Doing all this stuff without the need for registration

Features

  • Anonymous authorization on the server without the need for registration
  • Hybrid RSA+AES encryption of data with asymmetric keys stored on client
  • All sent data encrypted on the client and could not be decrypted by the server
  • Clients adding each other to the "receivers list" by sending their public key and user ID using third-party channel
  • Possible to add public key and user ID by scanning QR-code
  • Single button click to clear all client's data and keys and start a new session

Disclaimers

  • Application is on its beta stage so some bugs could be out where
  • Application is written initially for my own use so code isn't perfect and would be refactored later
  • Design and all the frontend is made by a backend programmer, so it looks quite ugly

Usage of the official app

  • After you opening https://cryptboard.io/ on any device, it automatically authorizes on the server and gets a user ID (uid)
  • Also, private and public RSA keys are generated to use in the encryption/decryption process
  • To start exchange text or files you have to share your uid and public key with another user (or device)
    • You can open QR-code on the "Share key" page with your mobile phone, and do "Add Key" from it
    • If you open two such QR-codes from the same mobile phone, and use the checkbox "Share all my receivers" (by default turned on on mobile), all of the keys would be shared between devices and your mobile phone
    • You can copy the link on the "Share key" page and send it over some other messenger or email
    • Also, you can copy QR code (make a screenshot) and send it over other messenger or email
  • Device where your uid and the public key is added could automatically send its uid and public key back encrypted if the checkbox "Send my key back" is checked (by default it is)
  • After uid and key is added you can send text or files back and forth between devices (or people)
  • Avatars should be used to check if uid and the public key wasn't changed while traveling through third-party messenger

Details on secure usage could be found at https://cryptboard.io/security

Technologies

  • Application backend is based on php-fpm, with super-simple hand-crafted micro-framework
  • Database used by backend server is Redis
  • Frontend is written on html + css + vanillaJs + jQuery + Bootstrap

Detail on used technologies is here: https://cryptboard.io/about

Deploying your own installation

Docker installation

Prerequisites:

  • Docker
  • docker-compose
  • Nginx on the host machine

Installation:

  1. Clone repo.
git clone [email protected]:MihanEntalpo/cryptboard.io.git
  1. Install docker, docker-compose and nginx

Installation of docker described at https://docs.docker.com/get-docker/

Installation of docker-compose described at https://docs.docker.com/compose/install/

Install nginx by your repo's package manager

  1. Create config file
cp web-app/.env.docker.example web-app/.env.docker
  1. Generate public and private keys for usage with JWT:

Run command:

ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub

Files jwtRS256.key and jwtRS256.key.pub would be created.

  1. Put contents of the files to .env.docker

Content of the files should be put in one-liners with "\n" string joining splitted lines, and put it to JWT_PUBLIC_KEY and JWT_PRIVATE_KEY variables.

To make it simple just run the following bash command:

Fill JWT_PRIVATE_KEY in .env.docker:

LINE=$(cat ./web-app/jwtRS256.key | tr '\n' '$' | sed 's|\$|\\\\n|g;s|^|JWT_PRIVATE_KEY=|g'); sed -i "s|^JWT_PRIVATE_KEY.*|$LINE|g" -i ./web-app/.env.docker

Fill JWT_PUBLIC_KEY in .env.docker:

LINE=$(cat ./web-app/jwtRS256.key.pub | tr '\n' '$' | sed 's|\$|\\\\n|g;s|^|JWT_PUBLIC_KEY=|g'); sed -i "s|^JWT_PUBLIC_KEY.*|$LINE|g" -i ./web-app/.env.docker
  1. Fill some other variables

SERVER_HOST should be set to your HTTP host configured in Nginx or any other reverse-proxy server.

On official app this variable is set to cryptboard.io

SERVER_PORT should be a port, that is opened from docker container with running app

  1. Build docker imaged
./build-docker-images.sh
  1. Run docker-compose cluster:
./docker-compose.sh up -d

All normal docker-compose commands could be used with docker-compose.sh, for example:

./docker-compose.sh ps -a
./docker-compose.sh up -d
./docker-compose.sh stop

So, instead of docker-compose ps you run ./docker-compose.sh ps and so on.

This is just a simplification to use docker-compose without specifying docker-compose.yml file and .env.docker envfile for every call.

  1. Check if application is running:

Open url http://127.0.0.1:{SERVER_PORT}/ in browser (You you are deploying app not locally, but on some online server, replace 127.0.0.1 by it's real IP)

  1. Configure nginx to be a reverse-proxy to this local server and make it use SSL if needed (SSL keys could be obtained from LetsEncrypt)

Use conf/nginx/docker-proxypass.conf as a template for your docker config.

You will need to set the right hostname, proxy_pass port, logfiles location and letsencrypt key and cert files.

Old good dockerless installation

Recommended for development

Prerequisites:

  • Nginx
  • Redis-server
  • Php-fpm (version 7.0 and higher)
  • Php-redis extension

Installation:

Instructions are made for deb-based distro:

  1. Install needed packages
sudo apt-get install nginx-full php-fpm php-redis git
  1. Clone repo
git clone [email protected]:MihanEntalpo/cryptboard.io.git
  1. Create config file
cp web-app/.env.example web-app/.env
  1. Install composer, and install requirements:

Composer installation instructions are here: https://getcomposer.org/download/

Run:

cd web-app
./composer.phat install

Or if you've installed composer into your PATH:

cd web-app
composer.phat install
  1. Generate public and private keys for usage with JWT:

Run command:

ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub

Files jwtRS256.key and jwtRS256.key.pub would be created.

  1. Put contents of the files to .env file

Content of the files should be put in one-liners with "\n" string joining splitted lines, and put it to JWT_PUBLIC_KEY and JWT_PRIVATE_KEY variables.

To make it simple just run the following bash command:

Fill JWT_PRIVATE_KEY in .env:

LINE=$(cat ./web-app/jwtRS256.key | tr '\n' '$' | sed 's|\$|\\\\n|g;s|^|JWT_PRIVATE_KEY=|g'); sed -i "s|^JWT_PRIVATE_KEY.*|$LINE|g" -i ./web-app/.env

Fill JWT_PUBLIC_KEY in .env:

LINE=$(cat ./web-app/jwtRS256.key.pub | tr '\n' '$' | sed 's|\$|\\\\n|g;s|^|JWT_PUBLIC_KEY=|g'); sed -i "s|^JWT_PUBLIC_KEY.*|$LINE|g" -i ./web-app/.env
  1. Fill some other variables

SERVER_HOST should be set to your HTTP host configured in Nginx or any other reverse-proxy server.

On official app this variable is set to cryptboard.io

  1. Configure Nginx

Use file conf/nginx/dockerless.conf as a template for your configuration.

You should change:

server_name, SSL certificate and key, root folder and PHP fastcgi_pass url

  1. Open site in browser and check if it's running.

If it's not, look for logs of nginx and php and check what should be changed.

cryptboard.io's People

Contributors

mihanentalpo avatar 8go avatar christian-oudard avatar hacsuser avatar krendel avatar tomholford avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.