The only tool/technique to punch holes through firewalls/NATs where multiple clients & server can be behind separate NATs without any 3rd party involvement. Pwnat is a newly developed technique, exploiting a property of NAT translation tables, with no 3rd party, port forwarding, DMZ, DNS, router admin requirements, STUN/TURN/UPnP/ICE, or spoofing.
I have started a server with this command
./pwnat -s 192.168.1.3 (accessible with 2222 port)
Client A with
./pwnat -c 172.16.16.2 3333 41.41.41.41 2222 (41.41.41.41 is the public ip of the server)
Another client B with
./pwnat -c 127.0.0.1 2222 41.41.41.41 2222 172.16.16.2 23
I have tried also in client B
./pwnat -c 127.0.0.1 2222 41.41.41.41 2222 42.42.42.42 23 (where 42.42.42.42 is the public IP of client A)
Client B want to telnet client A :
telnet 12.0.0.1 2222
but it is not working !
Hello,
I have started a server with this command ./pwnat -s 192.168.1.3 (accessible with 2222 port)
Client A with ./pwnat -c 172.16.16.2 3333 41.41.41.41 2222 (41.41.41.41 is the public ip of the server)
Another client B with ./pwnat -c 127.0.0.1 2222 41.41.41.41 2222 172.16.16.2 23 I have tried also in client B ./pwnat -c 127.0.0.1 2222 41.41.41.41 2222 42.42.42.42 23 (where 42.42.42.42 is the public IP of client A)
Client B want to telnet client A : telnet 12.0.0.1 2222 but it is not working !
Any help please