What is the correct command to run Netcat on a server using port 56 that spawns command shell when connected?
nc -port 56 -s cmd.exe
nc -p 56 -p -e shell.exe
nc -r 56 -c cmd.exe
nc -L 56 -t -e cmd.exe
Submit