Skip to main content

Posts

Showing posts from October, 2023

Linux Server Installation

Linux Server Installation Youtube In the lab, we are going to install a Linux Server on a virtual box. Go to the Linux site and download the ISO for installation. https://ubuntu.com/download/server Once you have downloaded the ISO, go to the virtual box and start a new virtual machine. Name your machine and choose the ISO you downloading for installation. Choose your RAM and CPU settings. Change your network to “ NAT NETWORK”. Launch your new machine and follow the installation. Choose the first option. Install Ubuntu Server. Once you finish installation it will restart. Make sure to remove the ISO disk so you do not go through the installation process again. You will be prompted to log in with the username and password you created during the installation.  This completes the Linux Server installation.  

Kali Installation

  Kali Installation Youtube In this blog, we are going how to install Kali on to virtual box. The first step is to go to the Kali website and download the ISO for installation.  https://www.kali.org/get-kali/#kali-virtual-machines Once you have downloaded the ISO, make sure you have a tool to unzip the compressed file. You down download 7-zip for free. https://www.7-zip.org/ Download the version for your operating system and install 7-zip. Once you have finished installing 7-zip you will be able to unzip the compressed file. Find the file you downloaded from Kali and right-click choose more option if you do not see 7-zip. You can choose where you would like your extracted file to be stored. In this case, I choose to extract the file in this location. Once you extract the compressed file you will see another file called kali-linux-XXX.Xvirtualbox-amd.ova Double-click on that file and it will import the Kali operating system into the virtual box.  Choose the RAM and CPU set...

Windows Server Installation - VitrualBox

  Windows Server Installation Youtube In this lab, we are going to install and set up the network adapter and Windows Server. Go to your Virtual Machine and click on new. Create a new machine. Name: name your virtual box. Insert the ISO you downloaded from Mircosoft. Skip unintended installation. Set your settings for your RAM and CPU. Finish Next, we are going to set up your network. Click on tools and the 3 lines and choose Network. In the network setting click on the NAT Network tab and create a new network. Check the DHCP box and leave all settings at default. Click ok. Click your Windows machine and go into settings to change your network adapter to NAT, NAT Network. This way your Windows machine is on that network before starting. Click okay and start your Virtual machine. Once your machine is up start the installation process.  Create a password and finish the setup. Log into your new Windows Server and install Guest Additions. Reboot the system to check if the machine ...

Nmap Scan

  Nmap scan Youtube If you missed the first part of setting up the virtual machines and ping, do this part first before attempting to scan the devices on the network. https://toukeevang.blogspot.com/2023/10/3-vm-ping-connection-in-this-project-we.html We first going to start with an ARP scan to get the device's IP address. On your Kali virtual machine, open the terminal and type the following command. > nmap -PR -sn 10.0.2.0/24 nmap = is the tool we are using followed by some options within the tool. -PR = P is for ping, R is for randomize  -sn = ping scan no port x.x.x.x = your target IP address This next scan is to test websites and get the known IP address for the website. For this scan, you need to use the escalated privilege “ sudo “.  > sudo nmap -PE -sn scanme.nmap.org sudo = escalated privilege nmap = tool use -PE = sends ICMP packet only to get responses back -sn = ping scan no ports Scanme.nmap.org = target We are going to copy the IP addresses of the virt...

3 VM - Ping Connection

  3 VM - Ping Connection Youtube In this project, we will install 3 virtual machines to communicate with each other. We already installed the Kali machine so we just need to install the other 2.  If you missed the installation of Kali, follow this blog.  https://toukeevang.blogspot.com/2023/10/virtual-machine-set-up.html   Installation Windows and Cloning the Kali machine.  Windows Ensure you have the minimum hardware requirement before starting or the lab will utilize many of your hardware resources. https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/dn303418(v=ws.11)   Go to the Windows website, download the Windows Server 2012 R2, and follow the instructions. https://www.microsoft.com/en-us/evalcenter/download-windows-server-2012-r2   Once you have downloaded the ISO open VirtualBox and click “New” Give your virtual machine a name and search for the ISO Image where you download the file. Name Folder - ...