Write Up Template
Platform
HackTheBox
Difficulty
Easy Medium Hard Insane
delete the ones that don't apply
delete the ones that don't apply
OS
Linux Windows
delete the one that doesn't apply
delete the one that doesn't apply
Summary
Two or three sentences describing the whole box in plain language. Name the key vulnerability classes and the rough path to root. Keep it spoiler-light - the details live in the sections below.
Skills Required
1–2 bullet points: what you already had to knowe.g. service enumeration, web exploitation, AD attacks
Skills Learned
2–4 bullet points: the new techniques this box teachese.g. specific CVEs, misconfigurations, esoteric protocols
Enumeration
Short narrative: which ports/services are open, what the app is, what jumped out.
# key nmap output (trimmed to the relevant ports) nmap -sC -sV -p- TARGET_IP
- port/service - one line on why it matters
- vhost/subdomain - anything notable from dir/vhost brute
Foothold
How code execution / the first valid credential was obtained. Include the exploit reasoning, not just the command.
# the payload / exploit that got the initial shell
Lateral Movement
Credential discovery, reused passwords, pivot, SSH/other user. Skip this section entirely if there is no second user hop.
# how the next user was reached
Privilege Escalation
The path to root/NT AUTHORITY\SYSTEM. Show the misconfiguration and the exact abuse.
# the final privesc step
Key Takeaways
1–3 bullet points: the transferable lessonse.g. don't trust X, always check Y, remember Z