In this tutorial, we will create a secure chat server that can deliver all the massages in a secure way. you might have heard that WhatsApp massages can’t be intercepted even if the device is running the proxy with an SSL cert.

I don’t think it is that secure as WhatsApp but this tool does the same. it encrypts all your massages in  AES(Advanced Encryption Standard) of which the maximum key size is 256 bit.

Steps

this is not a very popular tool in my perspective. just copy and paste the command to download it in your system:

git clone https://github.com/SusmithKrishnan/neuron.git

now you will be able to see the dir named neuron wherever you have downloaded it. and you will be glad to know that an Indian created this python tool.

after that, go to the folder and type these commands in your terminal:

chmod +x server.py
chmod +x neuron.py

these commands will give the scripts the executable permission.

now, we need to change the config file. you can change the password there. but it is not necessary.

after that, we will run the server.py with this command to start the chat server:

python server.py

now, all you have to do is run the neuron. py to connect with the chat server:

python neuron.py <host_ip> <port> <password> <nick_name>

host IP is on which chat server is running. and you can see the port and password in the config file, in case you don’t remember it. and you can choose whatever nickname you want.

 

 

Thanks For Visiting.

1 COMMENT

  1. with whome i will chat ?, does that person also need this server running, and how i would connect it with that person ?

LEAVE A REPLY

Please enter your comment!
Please enter your name here