Which command lets a tester enumerate alive systems in a class C network via ICMP using native Windows tools?
ping 192.168.2.
ping 192.168.2.255
for %V in (1 1 255) do PING 192.168.2.%V
for /L %V in (1 1 254) do PING -n 1 192.168.2.%V | FIND /I "Reply"
Submit