This project is a Python-based implementation of a custom reliable transport protocol that operates over UDP. It is designed to mimic core TCP functionalities, including connection establishment, ...
# Scan TCP ports 1 to 1024 (default) python port_scanner.py 192.168.1.10 # Scan UDP ports 53 to 100 python port_scanner.py example.com --start 53 --end 100 --proto udp # Scan both TCP and UDP ports 20 ...