Skip to content

Commit 45e867e

Browse files
authored
Add files via upload
1 parent 9fda06b commit 45e867e

5 files changed

+17
-0
lines changed

simple_proxy.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
curl --proxy "http://user:[email protected]:1234" "http://httpbin.org/ip"
2+
# or
3+
curl --proxy "user:[email protected]:1234" "http://httpbin.org/ip"

src/_curlrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
proxy="http://user:[email protected]:1234"

src/env_variables.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Enable Proxy
2+
export http_proxy="http://user:[email protected]:1234"
3+
export https_proxy="http://user:[email protected]:1234"
4+
5+
curl "http://httpbin.org/ip"
6+
7+
# Disable proxy
8+
unset http_proxy
9+
unset https_proxy

src/one_time_proxy.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
curl --proxy "http://user:[email protected]:8090" "http://httpbin.org/ip"
2+
# OR
3+
curl -x "http://user:[email protected]:8090" "http://httpbin.org/ip"

src/socks_proxy.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
curl -x "socks5://user:[email protected]:1234" "http://httpbin.org/ip"

0 commit comments

Comments
 (0)