Create a named pipe to redirect traffic
fifo is first in first out
mkfifo backpipe
- Listen on port 2222 for attacker traffic
- Attack traffic is piped to target
- target response is written to the named pipe
- return backpipe data to attacker client
nc -l -p 2222 < backpipe | nc 10.10.10.100 80 > backpipe