PrepAway - Latest Free Exam Questions & Answers

What does the following command in netcat do?

What does the following command in netcat do?

nc -l -u -p 55555 < /etc/passwd

PrepAway - Latest Free Exam Questions & Answers

A.
logs the incoming connections to /etc/passwd file

B.
loads the /etc/passwd file to the UDP port 55555

C.
grabs the /etc/passwd file when connected to UDP port 55555

D.
deletes the /etc/passwd file when connected to the UDP port 55555

Explanation:
-l forces netcat to listen for incoming connections.
-u tells netcat to use UDP instead of TCP
-p 5555 tells netcat to use port 5555
< /etc/passwd tells netcat to grab the /etc/passwd file when connected to.


Leave a Reply