File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ You can download the binary for your platform from [Releases](https://github.com
107107Example:
108108
109109``` shell
110- GOHPTS_RELEASE=v1.10.4 ; wget -v https://github.com/shadowy-pycoder/go-http-proxy-to-socks/releases/download/$GOHPTS_RELEASE /gohpts-$GOHPTS_RELEASE -linux-amd64.tar.gz -O gohpts && tar xvzf gohpts && mv -f gohpts-$GOHPTS_RELEASE -linux-amd64 gohpts && ./gohpts -h
110+ GOHPTS_RELEASE=v1.10.5 ; wget -v https://github.com/shadowy-pycoder/go-http-proxy-to-socks/releases/download/$GOHPTS_RELEASE /gohpts-$GOHPTS_RELEASE -linux-amd64.tar.gz -O gohpts && tar xvzf gohpts && mv -f gohpts-$GOHPTS_RELEASE -linux-amd64 gohpts && ./gohpts -h
111111```
112112
113113Alternatively, you can install it using ` go install ` command (requires Go [ 1.24] ( https://go.dev/doc/install ) or later):
Original file line number Diff line number Diff line change 11module github.com/shadowy-pycoder/go-http-proxy-to-socks
22
3- go 1.24.1
3+ go 1.24.2
44
55require (
66 github.com/goccy/go-yaml v1.18.0
77 github.com/google/uuid v1.6.0
88 github.com/rs/zerolog v1.34.0
9+ github.com/shadowy-pycoder/arpspoof v0.0.1
910 github.com/shadowy-pycoder/colors v0.0.1
10- github.com/shadowy-pycoder/mshark v0.0.16
11+ github.com/shadowy-pycoder/mshark v0.0.17
1112 github.com/wzshiming/socks5 v0.5.2
1213 golang.org/x/sys v0.33.0
1314 golang.org/x/term v0.32.0
Original file line number Diff line number Diff line change @@ -32,10 +32,12 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
3232github.com/rs/xid v1.6.0 /go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0 =
3333github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY =
3434github.com/rs/zerolog v1.34.0 /go.mod h1:bJsvje4Z08ROH4Nhs5iH600c3IkWhwp44iRc54W6wYQ =
35+ github.com/shadowy-pycoder/arpspoof v0.0.1 h1:K5D+cVGc3SCTI4VxSB6oE2x8SJgxRjE72E8Payk2jJA =
36+ github.com/shadowy-pycoder/arpspoof v0.0.1 /go.mod h1:dsVZh4gbbQFA4BQLEmL2qpsjtytKwxaf4oA2tRmvCW8 =
3537github.com/shadowy-pycoder/colors v0.0.1 h1:weCj/YIOupqy4BSP8KuVzr20fC+cuAv/tArz7bhhkP4 =
3638github.com/shadowy-pycoder/colors v0.0.1 /go.mod h1:lkrJS1PY2oVigNLTT6pkbF7B/v0YcU2LD5PZnss1Q4U =
37- github.com/shadowy-pycoder/mshark v0.0.16 h1:sS+EurtMJ5kW6W6VBQP3t4+Y9cQUVuw9r8BmSiYfb24 =
38- github.com/shadowy-pycoder/mshark v0.0.16 /go.mod h1:FqbHFdsx0zMnrZZH0+oPzaFcleP4O+tUWv8i5gxo87k =
39+ github.com/shadowy-pycoder/mshark v0.0.17 h1:ZVgMHt89Gzij2VXwEf2E4Jnjc5ItOvbVehGwc1V6YyY =
40+ github.com/shadowy-pycoder/mshark v0.0.17 /go.mod h1:Txx0p8JxYOGd+0V+6N9MeCUGtGdfHAATWE8KB1nd7H0 =
3941github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg =
4042github.com/stretchr/testify v1.9.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
4143github.com/wzshiming/socks5 v0.5.2 h1:LtoowVNwAmkIQSkP1r1Wg435xUmC+tfRxorNW30KtnM =
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import (
3131
3232 "github.com/goccy/go-yaml"
3333 "github.com/rs/zerolog"
34- "github.com/shadowy-pycoder/mshark/ arpspoof"
34+ "github.com/shadowy-pycoder/arpspoof"
3535 "github.com/shadowy-pycoder/mshark/layers"
3636 "github.com/shadowy-pycoder/mshark/network"
3737 "github.com/wzshiming/socks5"
Original file line number Diff line number Diff line change 11package gohpts
22
3- const Version string = "gohpts v1.10.4 "
3+ const Version string = "gohpts v1.10.5 "
You can’t perform that action at this time.
0 commit comments