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 […]
Month: September 2018
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 […]