More Firewall rules and VNC access to your Kali Linux

Goal

  1. First we are going to setup your Kali linux to allow SSH and VNC - your final goal is to show a VNC login from your Windows 10 Box.
  2. Understand Firewall rules and how they are processed on pfSense

  3. Explore the metasploitable box and see what ports are open on it. This will involve a bit of work relating to nmap. Goal is to list all open ports and the common programs that run on those ports.

Lab Guide

There will be a lecture and demo of firewall rules.

First we are going to setup

  1. Install the openssh-server on kali (you know how, I shouldn't have to tell you)
  2. Make sure the service always starts on a reboot (ditto here, hint update-rc.d)
    1. Can you login over ssh with root? Ok, then add yourself
    2. Don't forget to add yourself to the right group (hint: usermod will do that for you).
    3. Now you should be able to login from your Windows 10 machine (using putty, did you install that yet?) and sudo su|bash or whatever you want to use to become root! And you don't ever need that crazy IE for this either.
  3. Now that you are root, why not take this opportunity to update|upgrade your system.
    1. This is not as easy as it may sound. You should know to do a apt-get update, apt-get upgrade, apt-get dist-upgrade, and now full-upgrade. BUT THIS MAY NOT WORK HERE! Why? Because you are installing software that will set off all sorts of alarms in most security suites.
    2. Solution? I had to use a SOCKS proxy to end around this. You all should collaborate to see if you can find a solution. I've given you a hint, here is another. There are only a couple of .deb files that will fail so you could just download them through another means (again, the means I used was a SOCKS proxy).
  4. Make sure you have updated your Windows 10, and Windows 2016 machines too.
  5. Since the most important step in security is to make sure your machines are up-to-date...
    1. Update all machines except metasploitable 3.
    2. Make sure that all machines will continue to update on a regular bases.
  6. Finally, I want to have a remote desktop ability to Kali 2. (e.g. RDP+VNC). However there seems to be problems with VNC and Gnome 3.
    1. I had to remove Gnome 3 and install mate. With directions here.

    2. You can change to and from booting to terminal with the following commands:
      • To switch from GUI to CLI: systemctl isolate multi-user.target

      • To switch from CLI to GUI: systemctl isolate graphical.target

    3. You can change which GUI you are using with: update-alternatives --config x-session-manager

In-Progress!

  1. Let's install the "vino" vnc server. (Follow your favorite tutorial

    1. I also had to install dconf-editor