From 6498e0ce00329a6a652ebc85ec4d432a86404b06 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Thu, 17 Mar 2022 16:05:00 -0400 Subject: obfsproxy: add initial proxy implementation Fixes #3 Signed-off-by: Sam Whited --- obfsproxy/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 obfsproxy/Makefile (limited to 'obfsproxy/Makefile') 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 -- cgit v1.2.3