HackTheBox: Beep
Hello Friends, welcome back to my blog for another writeup based on Hack The Box series for machine named BEEP. So starting with nmap scan, We got output with many ports and their services. Lets check out the website as port 80/443 are open. Lets find out about the directories by brute forcing using gobuster. Here we could see the directory named vtigercrm, management portal if tried to access goes to index.php page. So when researched about the vtigercrm, we got to know about exploit db number 37637 LINK: https://www.exploit-db.com/exploits/37637 This machine is exploitable using LFI vulnerabilities as mentioned in exploitdb 37637 number exploit. Working through we get to know about //etc/amportal.conf%00&module-Accounts&action. Just view page source and it would give you sorted view. Gather all the password and usernames from the page source and save it in files username.txt and password.txt respectively. now we dont know the actual userid password so we can try br...