nerdexam
EC-Council

312-50V9 · Question #79

On a Linux device, which of the following commands will start the Nessus client in the background so that the Nessus server can be configured?

The correct answer is C. nessus &. In Linux/Unix shells, appending an ampersand to a command runs that process in the background, freeing the terminal for other use.

Vulnerability Analysis

Question

On a Linux device, which of the following commands will start the Nessus client in the background so that the Nessus server can be configured?

Options

  • Anessus +
  • Bnessus *s
  • Cnessus &
  • Dnessus -d

How the community answered

(28 responses)
  • B
    4% (1)
  • C
    93% (26)
  • D
    4% (1)

Why each option

In Linux/Unix shells, appending an ampersand to a command runs that process in the background, freeing the terminal for other use.

Anessus +

The `+` character has no defined meaning as a background execution operator in Linux shell syntax and is not a valid Nessus CLI flag.

Bnessus *s

`*s` is not a valid shell operator or Nessus argument for background execution; the asterisk is a glob wildcard, not a process control symbol.

Cnessus &Correct

The `&` operator in Linux/Unix shells instructs the shell to fork the process and run it in the background, returning control to the terminal immediately. This allows the Nessus client to start and remain running so the administrator can then access and configure the Nessus server interface without blocking the current shell session.

Dnessus -d

The `-d` flag conventionally indicates debug or daemon mode depending on the application, but it is not the standard Linux shell mechanism for sending a process to the background.

Concept tested: Linux shell background process execution operator

Source: https://www.gnu.org/software/bash/manual/bash.html#Lists

Topics

#Nessus#Linux commands#background process#vulnerability scanner

Community Discussion

No community discussion yet for this question.

Full 312-50V9 Practice