Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

daphne suspects a trojan horse is installed on her system. she wants to…

Question

daphne suspects a trojan horse is installed on her system. she wants to check all active network connections to see which programs are making connections and the fqdn of where those programs are connecting to. which command will allow her to do this?

netstat -f -a -b
netstat -f -b
netstat -a -b
netstat -f -a

Explanation:

Analyze the user requirements

The user wants to check active network connections.
She needs to see:

  1. Which programs are making connections.
  2. The Fully Qualified Domain Name (FQDN) of the destinations.

Evaluate netstat parameters

We examine the standard Windows netstat command-line options:

  • -a displays all active connections and listening ports.
  • -b displays the executable involved in creating each connection or listening port.
  • -f displays Fully Qualified Domain Names (FQDN) for foreign addresses.

Combine the required flags

To meet all requirements, we must combine these parameters:

  • To see active connections: -a
  • To see the executable/program: -b
  • To see the FQDN: -f

Thus, the correct command is netstat -f -a -b (or any order of these parameters).

Connect to security concepts

Using the Network Security knowledge point, identifying unauthorized outbound connections from malicious software like Trojans is a critical step in incident response and system auditing.

Answer:

  • (A) netstat -f -a -b (Correct answer)
  • (B) netstat -f -b
  • (C) netstat -a -b
  • (D) netstat -f -a