X Tutup
Skip to content

Commit 5eff281

Browse files
committed
add httponly
1 parent c7268ef commit 5eff281

File tree

5 files changed

+1154
-1131
lines changed

5 files changed

+1154
-1131
lines changed

README.rst

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Apply OS system-wide proxy: (MacOS, Windows)
3737
.. code:: rst
3838
3939
$ pproxy -r ss://chacha20:abc@server_ip:8080 --sys -vv
40-
Serving on :8080 by http,socks4,socks5
40+
Serving on :8080 by http,socks4,socks5
4141
System proxy setting -> socks5 localhost:8080
4242
socks5 ::1:57345 -> ss server_ip:8080 -> slack.com:443
4343
socks5 ::1:57345 -> ss server_ip:8080 -> www.google.com:443
@@ -47,10 +47,10 @@ Apply CLI proxy: (MacOS, Linux)
4747

4848
.. code:: rst
4949
50-
$ export http_proxy=http://localhost:8080
51-
$ export https_proxy=http://localhost:8080
50+
$ export http_proxy=http://localhost:8080
51+
$ export https_proxy=http://localhost:8080
5252
53-
Run With Docker
53+
Run With Docker
5454
---------------
5555

5656
`pproxy` Docker container comes with C optimizations pre-installed.
@@ -91,8 +91,9 @@ Protocols
9191
| Name | TCP server | TCP client | UDP server | UDP client | scheme |
9292
+===================+============+============+============+============+==============+
9393
| http (connect) ||| | | http:// |
94-
+-------------------+------------+------------+------------+------------+--------------+
95-
| http (get,post) ||| | | http:// |
94+
+-------------------+ +------------+------------+------------+--------------+
95+
| http | || | | httponly:// |
96+
| (get,post,etc) | | | | | (as client) |
9697
+-------------------+------------+------------+------------+------------+--------------+
9798
| https ||| | | http+ssl:// |
9899
+-------------------+------------+------------+------------+------------+--------------+
@@ -174,10 +175,10 @@ Usage
174175
usage: pproxy [-h] [-l LISTEN] [-r RSERVER] [-ul ULISTEN] [-ur URSERVER]
175176
[-b BLOCK] [-a ALIVED] [-v] [--ssl SSLFILE] [--pac PAC]
176177
[--get GETS] [--sys] [--test TESTURL] [--version]
177-
178+
178179
Proxy server that can tunnel among remote servers by regex rules. Supported
179180
protocols: http,socks4,socks5,shadowsocks,shadowsocksr,redirect,pf,tunnel
180-
181+
181182
optional arguments:
182183
-h, --help show this help message and exit
183184
-l LISTEN tcp server uri (default: http+socks4+socks5://:8080/)
@@ -194,7 +195,7 @@ Usage
194195
--sys change system proxy setting (mac, windows)
195196
--test TEST test this url for all remote proxies and exit
196197
--version show program's version number and exit
197-
198+
198199
Online help: <https://github.com/qwj/python-proxy>
199200
200201
URI Syntax
@@ -254,7 +255,7 @@ URI Syntax
254255
| rc4 | 16 | 0 | 0 (lowest) |
255256
+-----------------+------------+-----------+-------------+
256257
| rc4-md5 | 16 | 16 | 0.5 |
257-
+-----------------+------------+-----------+-------------+
258+
+-----------------+------------+-----------+-------------+
258259
| chacha20 | 32 | 8 | 5 (highest) |
259260
+-----------------+------------+-----------+-------------+
260261
| chacha20-ietf | 32 | 12 | 5 |

pproxy/__doc__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = "pproxy"
2-
__version__ = "2.0.1"
2+
__version__ = "2.0.2"
33
__license__ = "MIT"
44
__description__ = "Proxy server that can tunnel among remote servers by regex rules."
55
__keywords__ = "proxy socks http shadowsocks shadowsocksr ssr redirect pf tunnel cipher ssl udp"

0 commit comments

Comments
 (0)
X Tutup