Windows Recon: PowerShell network scanner:
Using the tool to discover all available live hosts
- powerful asynchronous IPv4 network scanner for PowerShell;
- scan every IPv4 range;
- scan an entire subnet based on an IPv4 address;
bypass execution policy
PS> .\IPv4NetworkScan.ps1 -StartIPv4Address 10.10.10.0 -EndIPv4Address 10.10.10.20
#provides also hostnames
PS> .\IPv4NetworkScan.ps1 -IPv4Address 10.10.10.0 -Mask 255.255.255.0 -DisableDNSResolving
#doesn’t resolve the addresses
PS> .\IPv4NetworkScan.ps1 -IPv4Address 10.10.10.0 -CIDR 20 -EnableMACResolving
#reveals MAC and Vendor
Home of the tool
You might need PS on Linux