Quote:
|
Originally Posted by Kenshin May it explain in step by step ? |
OK, let's think this through together.
For Gunbound, you will need to redirect multiple ports. Let's focus first on port 8372, the world list server port.
On your gaming PC, you want to redirect the outbound connection to port 8372 to instead send traffic to port 80 on your remote PC.
To get the data to your server, you tell Gunbound that the world list server is on port 80 of your remote computer.
Then, on your remote computer, you tell netcat to listen on port 80:
But wait... we also want to send that data onto the world list server, so how do we do that? Let's pipe the data from netcat to netcat!
Code:
nc -l 80 | nc xxx.xxx.xxx.xxx 8372
Make sense?