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
#Listening Server to confirm callback connections | |
#If running this on nix based you may need to open up an iptables rule to open that port on the network. | |
#iptables command: | |
# sudo iptables -I INPUT -p tcp --dport 8888 -j ACCEPT | |
#To remove the iptables rule after you are finished: | |
# sudo iptables -D INPUT -p tcp --dport 8888 -j ACCEPT |