DevTools Logo

Port Scanner Guide

Port Scanner Guide

Educational reference — DevTools does not scan ports

What is a port scan?

A port scan sends connection attempts to TCP/UDP ports on a host to learn which services are listening. Security teams use authorized scans; attackers use them for reconnaissance.

Common techniques

TCP connect scan completes the handshake. SYN scan sends half-open probes. UDP scans are slower because many ports drop packets silently. Service/version detection follows open ports.

Legal and ethical boundaries

Scan only systems you own or have written permission to test. Many jurisdictions treat unauthorized scanning as illegal access. Cloud providers may suspend accounts for probing external hosts.

Safer alternatives for developers

Use the Port Reference tool for well-known port numbers. Test local services with curl or your app health endpoint. For production, rely on internal monitoring—not ad-hoc scans from a browser.

Related DevTools

Port Reference lists IANA-style service names. HTTP Request Builder tests a single endpoint. SSL Checker validates certificates on a known HTTPS URL.

Related tools

T-619 note: Port scanning is not implemented as an active tool; use Port Reference for port numbers and this guide for education.