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 […]
Category: Writeups
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 […]
Hackthebox – Poison Writeup
This is a writeup for the Poison machine on hackthebox.eu which was retired on 9/8/18! Enumeration first! We do a standard scan with nmap: nmap -sC -sV -Pn 10.10.10.84 We find ports 22 and 80 open, nice. We go to 10.10.10.84. Nice it actually lists out the files that are there.. don’t even have to […]
Hackthebox – Stratosphere Writeup
This is a writeup for the Stratosphere machine on hackthebox.eu which was retired on 9/1/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 This means we run the following 3 commands.. mkdir /root/Desktop/MyScripts mkdir /root/Desktop/MyScripts/Reports python3 EnumScript.py Script suggests port 22, 80, and 8080 are open. Note:SSH supports […]
Hackthebox – Celestial Writeup
This is a writeup for the Celestial machine on hackthebox.eu! We first enumerate for open ports as usual, with the nmap scan: nmap -sC -sV -Pn 10.10.10.85 Ok… port 3000 is open.. let’s try to browse there: 10.10.10.85:3000 404 is on the page.. hmmm. ctrl+u whoa.. refreshing the page changed it: hey dummy 2+2 is […]
Hackthebox – Valentine Writeup
So we’ve been doing a bit of HackTheBox to prepare for the OSCP, and this is a write-up for the Valentine Machine. First let’s enumerate – scan the ports! nmap -sC -sV -Pn 10.10.10.79 seems port 22, 80, 443 are open so we browse to the 80 first We get a nice picture, that seems […]