Differences between revisions 27 and 28
Revision 27 as of 2019-01-31 19:44:34
Size: 3880
Editor: scot
Comment:
Revision 28 as of 2019-01-31 19:47:26
Size: 4082
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 48: Line 48:
Here is an example of what I did for my ubuntu. First I setup a reserved IP for the ubuntu system. {{attachment:screen1.png}} Here is an example of what I did for my ubuntu. First I setup a reserved IP for the ubuntu system. {{attachment:screen3.png}}
Line 50: Line 50:
{{attachment:screen2.png}} Then I setup a NAT rule and firewall rule to allow port 2222 to be forwarded to my ubuntu machine on port 22. {{attachment:screen2.png}}

Then I can login from an ubuntu prompt on my system at home: {{attachement:screen1.png}}

Lab 03 - More Firewall rules and Remote access to your VMs

Goal

  1. Setup rdp backdoors to your windows machines on pfsense using NAT
  2. Setup ssh keys on github and use them to access your ubuntu, and kali machines. Again, setup backdoors using NAT
  3. Setup xrdp for kali (that way you can access it without having to use the SCVMM tool.
  4. Understand Firewall rules and how they are processed on pfSense

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), it should already be install on your ubuntu server.
  2. Create a public key private key pair and post your public key on git hub (see: https://help.github.com/articles/connecting-to-github-with-ssh/. Once you have your public key posted on github others can access it via: "github.com/username.keys" YOu can use that to your advantage when installing the keys. I used wget to get the keys from github.

  3. Make sure the open ssh service always starts on a reboot of kali (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 bitvise, 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.
  4. Now that you are root, take this opportunity to update|upgrade your systems.
    1. This is not as easy as it may sound for kali. 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. So you may have trouble with your kali update.
    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).
  5. Make sure you have updated your Windows 10, and Windows 2016 machines too.
  6. Since the most important step in security is to make sure your machines are up-to-date...
    1. Update all machines except metasploitable 3.
      • Hint if you your having trouble with pfSense, try the following:
        1. Check the networking
        2. Login to pfSense and do an upgrade from the commandline. # sudo pfSense-upgrade -d
    2. Make sure that all machines will continue to update on a regular bases.
  7. Install xrdp on kali (I'm assuming your ubuntu does not have a gui).
  8. Install NAT rules to allow you to ssh into your linux machines and rdp into your windows machines. You can use any port you like to forward to your internal machines (which should all have static IPs of course)

Show me

  1. Show me that you can login to each of the following machines from the lab network and that you have installed all updates except on Metasploitable 3!
    1. Windows 10
    2. Window Server
    3. Kali
    4. Ubuntu 18.04
  2. Show me that you can login to kali via ssh and rdp.
  3. Show me that you can rdp into your windows 10 machines directly from outside your firewall (yes these is a back door)
  4. Show me that you can ssh into your linux machines using bitvise and a public key from outside your firewall (yes these are back doors)

2019 screen shots

Here is an example of what I did for my ubuntu. First I setup a reserved IP for the ubuntu system. screen3.png

Then I setup a NAT rule and firewall rule to allow port 2222 to be forwarded to my ubuntu machine on port 22. screen2.png

Then I can login from an ubuntu prompt on my system at home: attachement:screen1.png

NetworkSecurity/Lab/Lab03 (last edited 2021-02-04 19:53:15 by scot)