Vulnhub Kioptrix Walkthrough Part 1
This is part of the TCM Security Practical Ethical Hacking course. Kioptrix is a classic beginner-friendly vulnerable machine available on Vulnhub. The idea is to compromise the machine and understand what you are doing at each step, not just copy paste commands. This was one of my first full walkthroughs.
The setup is simple. Download the Kioptrix VM from Vulnhub, run it in VMware or VirtualBox on a host-only or NAT network with your Kali machine. Your job is to find it on the network and get in.
1
2
Default username: John
Default Password: TwoCows2
Save your scan results as text files or screenshots as you go. You will want to refer back to them later.
Lets find our IP
- Start Virtual Machine
ip ain your main OS terminal, this will give us ip of our target machine- Now go to your main machine Kali run
sudo arp-scan -l
This will give us IP address, Mac Address and Vendor We are looking for our matching IP. or Azureware/VMware
Optional
Now go to terminal - sudo netdiscover -r your IP/subnet mask - sudo netdiscover -r 192.168.0.0/24 _This did not work in my case_ ***
Look for OPEN PORTS
1
nmap - `sudo nmap -sS 192.168.0.26` *-sS stands for stealth mode* 
For Full scan with nmap:
1
2
3
Gives extensive information - `sudo nmap -T4 -p- -A ip_of_target`
*_Note: Here -T4 is for speed, -p- all Ports and -A for all info, OS, Fingerprinting, applications and their version of applications, etc._* 
NMAP
1
Common Nmap commands and Uses
- Host Discovery
Here we found
- Target IP and Mac Address
- Open TCP ports
- OS, running applications, and their versions
- Enough information to start looking for exploits
What This Tells Us
After enumeration you should have a list of services and their versions. The next step is looking up those versions for known vulnerabilities. Tools like Searchsploit, or just a Google search with the service name and version, will give you a list of exploits to try.
Kioptrix Level 1 is vulnerable to a well-known mod_ssl exploit. If you have got this far you have everything you need to find it.
Continue to Kioptrix Walkthrough Part 2 for web application enumeration with Nikto, Dirbuster, and Burpsuite.

