summaryrefslogtreecommitdiff
path: root/obfsproxy/Makefile
diff options
context:
space:
mode:
authorSam Whited <sam@samwhited.com>2022-03-17 16:05:00 -0400
committerSam Whited <sam@samwhited.com>2022-04-05 13:32:41 -0400
commit6498e0ce00329a6a652ebc85ec4d432a86404b06 (patch)
treee68e3274393bae5f5498dc5d735be7f818a16663 /obfsproxy/Makefile
parent790d6f76ad24ec8153db9eb8dde21c1c6bc44d3f (diff)
obfsproxy: add initial proxy implementationobfsproxy
Fixes #3 Signed-off-by: Sam Whited <sam@samwhited.com>
Diffstat (limited to 'obfsproxy/Makefile')
-rw-r--r--obfsproxy/Makefile18
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