TCP and UDP port scanning with Nmap to discover open services and identify AnyDesk

Here I am running two Nmap commands in my terminal to gather more detailed information about the target machine:

sudo nmap -sV -sC 10.48.129.195

Screenshot_2026-08-10_11_12_31.png

From this, I found that port 22 is open for OpenSSH (version 7.6p1) and port 7070 is running an AnyDesk client

sudo nmap -v -sV -p 50001-50003 10.48.129.195

Screenshot_2026-08-10_11_12_31.png

Screenshot_2026-08-10_11_12_36.png

I scanned ports 50001 to 50003. This important range is needed to talk to the service we found earlier.