Objective
Assess an old consumer router that I own and no longer use with my current service provider. I wanted to practise safe network
reconnaissance, identify exposed services on the local gateway, and document the results in a professional format suitable for my
cybersecurity portfolio.
Lab setup
The assessment was performed from my MacBook while connected to the old router's local network. I did not use my Proxmox Kali VM for
this version because disconnecting the Proxmox server from my main network would interrupt access to the Proxmox web interface.
For this first scan, the laptop and router were enough.
Testing machine: MacBook
Tooling: Terminal, Nmap 7.99, web browser
Target device: Old ISP-provided DOCSIS gateway/router
Router IP: 10.0.0.1
Laptop IP: 10.0.0.239
Interface: en0
Network: 10.0.0.0/24
Tools used
- Nmap 7.99 for TCP service discovery and service/version detection.
- macOS Terminal for interface, routing, and connectivity checks.
- Browser-based router administration page for local management review.
- Screenshots and notes for portfolio documentation.
Methodology
- Confirmed that Nmap was installed and available from the terminal.
- Identified the default gateway using
route -n get default.
- Confirmed the laptop's local IP address and active interface using
ifconfig.
- Verified network connectivity to the router using ICMP ping.
- Ran a basic Nmap scan against the gateway at
10.0.0.1.
- Ran targeted service detection against common router and management ports.
- Documented open and filtered ports, then prepared the results for a findings table.
Initial results
The first scan confirmed that the router was reachable and exposing a small number of local services. Most TCP ports were filtered,
which is a positive sign because unnecessary services were not openly responding to the local client.
nmap 10.0.0.1
53/tcp open domain
80/tcp open http
443/tcp open https
49152/tcp open unknown
996 filtered tcp ports
Service detection
A targeted service scan identified DNS on port 53 and a router administration service on ports 80 and 443. Nmap reported the web service banner as Xfinity Broadband Router Server, while the browser login page displayed the Helix/Videotron gateway interface. Several
commonly risky services, including FTP, SSH, Telnet, SMB, AFP, and alternate web administration ports, appeared filtered during the
targeted scan.
nmap -sV -p 21,22,23,53,80,443,445,548,1900,5000,8080,8443,8888 10.0.0.1
53/tcp open domain dnsmasq 2.83
80/tcp open http Xfinity Broadband Router Server
443/tcp open ssl/https Xfinity Broadband Router Server
21/tcp filtered ftp
22/tcp filtered ssh
23/tcp filtered telnet
445/tcp filtered microsoft-ds
548/tcp filtered afp
1900/tcp filtered upnp
5000/tcp filtered upnp
8080/tcp filtered http-proxy
8443/tcp filtered https-alt
8888/tcp filtered sun-answerbook