QuestionQ52

Threat Hunting and Detection

Michael, a forensic expert, was assigned to investigate an incident involving unauthorized intrusion attempts. During the investigation, Michael identified every open port on a system and disabled them because open ports can enable attackers to install malicious services and compromise the security of the system or network.

Which of the following commands helped Michael identify open ports in this scenario?

  • A netstat -rn
  • B ifconfig <interface> -promisc
  • C netstat -i
  • D nmap -sT localhost
Explanation

Nmap’s -sT option runs a TCP connect scan, which attempts TCP connections to the target’s ports and reports their states, including ports that are open. Running it against localhost scans the local system.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!