This is a writeup for the Bounty machine on hackthebox.eu which was retired on 10/27/18! We first enumerate ports with: nmap -sC -sV -Pn 10.10.10.93 Port 80 is open so we go to it and it shows a wizard, nice. We look around the site and find that the server is Microsoft-IIS/7.5 but that’s not […]
Month: October 2018
Hackthebox – DevOops Writeup
This is a writeup for the DevOops machine on hackthebox.eu which was retired on 10/13/18! First, enumerate! Let’s try the custom python enumeration script a friend of ours made: https://github.com/vishalb2308/Pentest-Enumeration-Script/blob/master/EnumScript.py The nmap part of the script indicates that: ports 22 and 5000 are open ssh is on 22 and supports publickey and password authentication Server […]
Hackthebox – Sunday Writeup
This is a writeup for the Sunday machine on hackthebox.eu which was retired on 9/29/18! We started with a typical nmap scan: nmap -sC -sV -Pn 10.10.10.76 This results in: We then start a nmap scan on all ports: nmap -p 1-65535 -T4 -A -v –min-rate 1000 –max-retries 5 10.10.10.76 We get two additional ports […]
Hackthebox – Canape Writeup
This is a writeup for the Canape machine on hackthebox.eu which was retired on 9/15/18! First, enumerate! Let’s try the custom python enumeration script a friend of ours made: https://github.com/vishalb2308/Pentest-Enumeration-Script/blob/master/EnumScript.py We find that port 80 is open and the page looks something like this: nmap (with command nmap -sC -sV 10.10.10.70) indicated that there was […]