Coder Social home page Coder Social logo

vpn-project's Introduction

VPN - project

Creating a secured communication channel between client and server. The client and server exchange certificates signed by a common CA, validate each others and agree on session parameters which are encrypted using public key encryption through the handshake.

Once the connection is set up, a connection can be made to the vpn-client and the vpn-server so data can be transformed securely.

vpn netwrok

Run the program

Run the forwardServer:

$ java ForwardServer --handshakeport=2206 --usercert=server.pem--cacert=ca.pem --key=server-private.der

Run the forwardClient:

$ java ForwardClient --handshakehost=<host>  --handshakeport=2206 --targethost=<host> --targetport=6789 --usercert=client.pem --cacert=ca.pem --key=client-private.der

Test the Program

Netcat can be used to test the program.

On Windows

  1. Download netcat

  2. Open command prompt and cd to netcat path, then

  3. Create a test server

$ nc.exe -vv -l -p XXXX
  1. Create a test client
$ nc.exe -vv <host> XXXX

On Mac and Linux

  1. Create a test server
$ nc -l XXXX
  1. Create a test client
$ nc <host> XXXX

vpn-project's People

Contributors

ahmadshabeeb avatar

Stargazers

 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.