Skip to main content

Ping Sweep

Quick host discovery before port scanning. Replace $SUBNET with the first three octets (e.g. 10.10.110).

Linux

Windows


nmap

Two-phase workflow: fast full TCP scan to find open ports, then a targeted service + script scan on just those ports.

rustscan

Faster initial port discovery than nmap: pipe results straight into nmap for service scanning.

NFS

NFS runs on port 2049, with portmapper/rpcbind on 111 handling service registration. Enumerate exports first, then mount.

Enumeration

Mounting

no_root_squash Abuse

By default NFS maps root (UID 0) from the client to an anonymous user on the server (root_squash). If the export is configured with no_root_squash, root on your attacker machine is root on the server’s share.