Hemisphere:Lynx - Walkthrough [Vulnhub]
Here's my solution for Hemisphere:Lynx. The machine can be downloaded from here. Port Scanning Using nmap to scan all TCP ports. $ nmap -sC -sV -p- 192.168.1.104 We find 5 ports open. Enumeration. Browsing the web and checking the source did not reveal any useful information. At this point tried brute forcing directories but no result. Since SMB ports are open we can use enum4linux against the host to find any useful information. $ enum4linux -a 192.168.1.104 And yes we find a user- johannes. Well the author of the machine has already given us a hint as- brute force We use cewl to create a list of passwords. $ cewl http://192.168.1.104 > wordlist Now we have a username and list of passwords we use hydra to brute force ssh. $ hydra -l johannes -P wordlist 192.168.1.104 ssh We have the password as- constelaciones. Getting Access As we have the username as well as password we access ssh. $ ssh johannes@192.168.1.104 Password: constelaciones User Flag Privilege Escalation We navig...