diff options
Diffstat (limited to 'obfsproxy/Makefile')
-rw-r--r-- | obfsproxy/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/obfsproxy/Makefile b/obfsproxy/Makefile new file mode 100644 index 0000000..c0ad4bc --- /dev/null +++ b/obfsproxy/Makefile @@ -0,0 +1,18 @@ +GW=37.218.241.98 + +certs: + curl -k https://black.riseup.net/ca.crt > /tmp/ca.crt + curl -k https://api.black.riseup.net/3/cert > /tmp/cert.pem + +proxy: certs + #./obfsproxy -proxy=${GW}:4430 -addr=127.0.0.1:4430 + GW=${GW} ./leap-vpn.sh + +check: + curl https://wtfismyip.com/json + +stop: + pkill -9 shape + +obfsproxy: + go build |