This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Censys.io: services.ssh.server_host_key.fingerprint_sha256: 8f927eeb40af3a3d39ea44ec2805a9315a51ed5b79eba3dd51e1245c9d758f81 | |
| 77.241.206.86 (HostBaltic.balt-ix.net) | |
| 93.123.39.1 | |
| 45.125.65.1 | |
| 103.253.42.9 | |
| 45.123.190.1 | |
| 94.156.8.1 | |
| 45.125.66.1 | |
| 194.165.17.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Simple TCP Proxy | |
| Receive connections on one port and forward them to another port or ip. | |
| Example: | |
| $ python3 -m http.server 8080 # Start an http server on port 8080 | |
| $ python3 tcp_proxy.py 192.168.1.100 5000 127.0.0.1 8080 # Proxy port 5000 to localhost:8080 | |
| $ python3 tcp_proxy.py :: 5000 192.168.10.10 8080 # Proxy IPv6 port 5000 to 192.168.10.10:8080 | |
| Open http://192.168.1.100:5000/ in Chrome | |
| """ | |
| import argparse |