Exam GCIH All QuestionsBrowse all questions from this exam
Question 89

How could an attacker set up a persistent backdoor listener to a login shell on TCP port 53 using netcat on a Linux system?

    Correct Answer: D

    To set up a persistent backdoor listener on TCP port 53 using netcat, the command should run continuously to ensure persistence. The command 'while true; do nc -l -p 53 -e /bin/sh; done' sets up an infinite loop that repeatedly starts a netcat listener on port 53, which executes a shell when a connection is made, thus maintaining persistence.

Discussion
XBalOption: D

Answer should be D because of word "Persistent"

sasdsOption: A

correct answer A

847ch0n3Option: D

persistent = while true