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
107
107
Example:
108
108
109
109
``` 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
111
111
```
112
112
113
113
Alternatively, 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 1
1
module github.com/shadowy-pycoder/go-http-proxy-to-socks
2
2
3
- go 1.24.1
3
+ go 1.24.2
4
4
5
5
require (
6
6
github.com/goccy/go-yaml v1.18.0
7
7
github.com/google/uuid v1.6.0
8
8
github.com/rs/zerolog v1.34.0
9
+ github.com/shadowy-pycoder/arpspoof v0.0.1
9
10
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
11
12
github.com/wzshiming/socks5 v0.5.2
12
13
golang.org/x/sys v0.33.0
13
14
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
32
32
github.com/rs/xid v1.6.0 /go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0 =
33
33
github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY =
34
34
github.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 =
35
37
github.com/shadowy-pycoder/colors v0.0.1 h1:weCj/YIOupqy4BSP8KuVzr20fC+cuAv/tArz7bhhkP4 =
36
38
github.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 =
39
41
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg =
40
42
github.com/stretchr/testify v1.9.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
41
43
github.com/wzshiming/socks5 v0.5.2 h1:LtoowVNwAmkIQSkP1r1Wg435xUmC+tfRxorNW30KtnM =
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import (
31
31
32
32
"github.com/goccy/go-yaml"
33
33
"github.com/rs/zerolog"
34
- "github.com/shadowy-pycoder/mshark/ arpspoof"
34
+ "github.com/shadowy-pycoder/arpspoof"
35
35
"github.com/shadowy-pycoder/mshark/layers"
36
36
"github.com/shadowy-pycoder/mshark/network"
37
37
"github.com/wzshiming/socks5"
Original file line number Diff line number Diff line change 1
1
package gohpts
2
2
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