Nmap Basic Port Scans

March 05, 2024

Task 1: Introduction

Task 2: TCP and UDP Ports

Task 3: TCP Flags

Task 4: TCP Connect Scan

This is the first scan by tryhackme

Then this is my scan for the machine IP

nmap -sT -oN nmap-connect 10.10.245.44

Task 5: TCP Syn Scan

This is the first scan from the Tryhackme room

This is my newly scan for the machine

sudo nmap -sS -oN nmap-syn 10.10.202.54

Task 6: UDP Scan

This is my UDP scan for the machine

sudo nmap -sU -F -oN nmap-udp 10.10.110.233

Task 7: Fine-Tuning Scope and Performance

Task 8: Summary

Last updated