Checkpoint - Hack The Box Writeup
Checkpoint models a Windows Server 2025 Active Directory environment built around a chain of three distinct issues: a malicious VS Code extension for initial code execution, the BadSuccessor dMSA p...
Checkpoint models a Windows Server 2025 Active Directory environment built around a chain of three distinct issues: a malicious VS Code extension for initial code execution, the BadSuccessor dMSA p...
███████╗██╗ ██╗██████╗ █████╗ ██╗ ██╗██████╗ ██╗ ██╗███████╗████████╗███████╗██████╗ ╚══███╔╝╚██╗ ██╔╝██╔══██╗██╔══██╗╚██╗██╔╝██╔══██╗██║ ██║██╔════╝╚══██╔══╝██╔════╝██╔══██╗ ███╔╝ ╚████...
Nmap Recon and Initial Enumeration To begin, we add the target to our hosts file so blocksynergy.htb resolves locally: echo "10.10.x.x blocksynergy.htb" | sudo tee -a /etc/hosts Next, we run a...
Nmap Recon and Initial Enumeration To begin our reconnaissance, we run an Nmap scan to identify open ports and services on the target machine: nmap -p- -sV -sC -T4 [TARGET_IP] The scan reveals ...
A detailed walkthrough of the TryHackMe 'Intro to Offensive Security' lab, covering terminal usage, hidden web pages, and vulnerability identification.

Introduction DarkCorp is a HackTheBox Season 7 machine that requires pivoting through an internal network using sshuttle. This guide will walk you through the steps to gain user and root access. ...
Introduction The CAP machine is an easy Linux-based challenge focused on web enumeration, packet analysis, and exploiting Insecure Direct Object Reference (IDOR) vulnerabilities. This walkthrough d...

Introduction DDoS (Distributed Denial of Service) attacks are a type of cyber attack where multiple compromised systems flood a targeted server or network with traffic, overwhelming it and renderi...
What is the TLS Handshake? The TLS handshake is a crucial process that ensures secure communication between a client (e.g., a web browser) and a server (e.g., a website). It lays the foundation fo...
Nmap Recon and Initial Enumeration To begin our reconnaissance, we run an Nmap scan to identify open ports and services on the target machine: nmap -sV 10.10.11.53 -T5 -Pn The scan results reve...