nerdexam
EC-Council

312-50V10 · Question #306

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 & to any command runs that process in the background, allowing the terminal to remain free for other tasks.

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

(45 responses)
  • A
    4% (2)
  • B
    2% (1)
  • C
    91% (41)
  • D
    2% (1)

Why each option

In Linux/Unix shells, appending & to any command runs that process in the background, allowing the terminal to remain free for other tasks.

Anessus +

'nessus +' is not valid Linux shell syntax and is not recognized as a flag or operator by the Nessus client or the shell.

Bnessus *s

'nessus *s' uses the glob wildcard character * which has no meaning as a Nessus flag and would be misinterpreted by the shell.

Cnessus &Correct

The & shell operator instructs the Linux shell to launch the preceding command as a background process, detaching it from the foreground terminal session. Running 'nessus &' starts the Nessus client in the background so the user can then interact with or configure the Nessus server from the same terminal without waiting for the client process to exit.

Dnessus -d

'nessus -d' is not the standard option for backgrounding the process in the shell; -d may refer to debug or daemon modes in some tools but does not use the shell's background execution mechanism.

Concept tested: Linux shell background process execution with & 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-50V10 Practice