Kioptrix

Finding Vulnerabilities

  1. we used sudo netdiscover -r 192.168.161.0/24 with our ip to find the vmware ip

  2. we use nmap -T4 -p- -A 192.168.161.130 to find all info about the system

  3. 80/443 default webpage found with apache server running

  4. Found that mod_ssl/2.8.4 - mod_ssl 2.8.7 and lower are vulnerable to a remote buffer overflow which may allow a remote shell.

  5. We can use three tools for directory busting:

    • gobuster

    • dirb

    • dirbuster

  6. Found usage subdirectory which disclosed following info: Generated by Webalizer Version 2.01

SMB Enumeration

  1. SMB version found using metasploit- Unix (Samba 2.2.1a)

  2. Then use smbclient to gain access to smb (can potentially contain valuable data) which led to find:

    • smbclient \\\\192.168.161.130\\IPC$

      • Access Denied

    • smbclient \\\\192.168.161.130\\ADMIN$

SSH Enumeration

  1. We try to make a connection using: ssh 192.168.161.130 -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-dss -c aes128-cbc The output:

DSA key fingerprint is SHA256:lEaf2l45SOoTn6qFh/EObfveZjbgCPuTHIXBFtD9mY8.
This key is not known by any other names.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.161.130' (DSA) to the list of known hosts.
kali@192.168.161.130's password

We do this to check for exposed banners(which could have ssh version or created by which companies etc).

SSL remote shell

  1. mod_ssl/2.8.4 - mod_ssl 2.8.7 and lower are vulnerable to a remote buffer overflow which may allow a remote shell. is the one we targeting

  2. 80/443 -> Found exploit - https://github.com/heltonWernik/OpenLuck

Exploitation

  1. Undetected malicious activity

Passwords

SSH brute forcing

  1. Using hydra hydra -l root -P /usr/share/wordlists/metasploit/unix_passwords.txt ssh://192.168.161.130 -t 4 -V

  2. Using metasploit

Last updated