commit 2bc6338803c70859816bae86d13d035959e4415f Author: Felix Pankratz Date: Tue Mar 24 19:10:13 2020 +0100 so far calls a website and prints to stdout diff --git a/README.md b/README.md new file mode 100644 index 0000000..4f25ec6 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +## panxy +# proxying requests through random proxies :) + +started 20200324 by panki + diff --git a/panxy.py b/panxy.py new file mode 100644 index 0000000..607eeb2 --- /dev/null +++ b/panxy.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 +# panxy, a random proxy connector + +PXY_IP = "200.89.178.196" +PX_PORT = 80 + +from urllib import request + +target = "https://theresno.cloud/ip" + +result = request.urlopen(target) +content = result.read().decode() + +print(content) +