Created
May 18, 2019 03:36
-
-
Save kiwnix/f4e02c284f125a296ff8763ac6418591 to your computer and use it in GitHub Desktop.
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
| #!/bin/sh | |
| # Para smartproxy server ( https://addons.mozilla.org/es/firefox/addon/smartproxy/ ) | |
| echo "[SmartProxy Servers]" | |
| curl -LsS https://api.mullvad.net/public/relays/wireguard/v1/ | jq -r ".countries[] | (.code + \" - \" + .name + \" \" + ( .cities[] | (.name + \";\" + (.relays[].hostname / \"-\")[0] + \"-wg.socks5.mullvad.net\" ) ) ) + \":1080\" " | awk '{split($0,a,";"); print a[2] " [SOCKS5] " "["a[1]"]"}' | sed s/","/" -"/g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment