A security analyst wants to enumerate NetBIOS names on a Windows network. Which built-in Windows command-line tool should they use?
Trap 1: nslookup
nslookup is used for DNS queries, not NetBIOS enumeration.
Trap 2: netstat
netstat displays active TCP connections, listening ports, and network statistics, not NetBIOS names.
Trap 3: net view
net view displays shared resources on a network but does not enumerate NetBIOS names directly.
- A
nslookup
Why wrong: nslookup is used for DNS queries, not NetBIOS enumeration.
- B
netstat
Why wrong: netstat displays active TCP connections, listening ports, and network statistics, not NetBIOS names.
- C
nbtstat
nbtstat is the correct command for NetBIOS name resolution and enumeration.
- D
net view
Why wrong: net view displays shared resources on a network but does not enumerate NetBIOS names directly.