Hackthebox -> Netmon (User Owned)


Walkthrough -> Hackthebox Netmon


  1. Scan the given IP -> 10.10.10.152
    • Command -> nmap -sC -sV 10.10.10.152 
    • Now this type of output wll come
      • This Result is Showing that the server is vulnerable for FTP Anonymous Login
  2.  Attacking. 

    • For Exploiting the vulnerable server we need password
    • command ->  hydra -C /usr/share/seclists/Passwords/Default-Credentials/ftp-betterdefaultpasslist.txt ftp://10.10.10.152 (Wordlist Used Seclists -> apt-get install seclists ).
    • By this FTP login can be done.
 
    • Here You can found User.txt which is the user flag.