1874f7a7c2
This diff enables `websteps` to use uTLS for TLS parroting. It integrates the `oohttp.StdlibTransport` wrapper which uses the `ooni/oohttp` fork. `oohttp` supports TLS-like connections like `utls.Conn`. As a prototype, the testhelper and `websteps` code now uses the `utls.HelloChrome_Auto` fingerprint, i.e. the simulated TLS fingerprint of the Google Chrome browser. It is a further contribution for my GSoC project. Reference issue: https://github.com/ooni/probe/issues/1733
51 lines
2.0 KiB
Modula-2
51 lines
2.0 KiB
Modula-2
module github.com/ooni/probe-cli/v3
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
filippo.io/age v1.0.0-rc.1
|
|
git.torproject.org/pluggable-transports/goptlib.git v1.1.0
|
|
git.torproject.org/pluggable-transports/snowflake.git v1.0.0
|
|
github.com/alecthomas/kingpin v2.2.6+incompatible
|
|
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
|
|
github.com/apex/log v1.9.0
|
|
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
|
|
github.com/creack/goselect v0.1.2 // indirect
|
|
github.com/cretz/bine v0.1.0
|
|
github.com/dchest/siphash v1.2.2 // indirect
|
|
github.com/fatih/color v1.10.0
|
|
github.com/google/go-cmp v0.5.5
|
|
github.com/google/martian/v3 v3.1.0
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
|
github.com/google/uuid v1.2.0
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/hexops/gotextdiff v1.0.3
|
|
github.com/iancoleman/strcase v0.1.3
|
|
github.com/lucas-clemente/quic-go v0.21.0
|
|
github.com/mattn/go-colorable v0.1.8
|
|
github.com/mattn/go-sqlite3 v1.14.7 // indirect
|
|
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
|
github.com/miekg/dns v1.1.42
|
|
github.com/mitchellh/go-wordwrap v1.0.1
|
|
github.com/montanaflynn/stats v0.6.6
|
|
github.com/ooni/oohttp v0.0.0-20210818104219-f8ceac6f2622
|
|
github.com/ooni/probe-assets v0.3.1
|
|
github.com/ooni/psiphon v0.8.0
|
|
github.com/oschwald/geoip2-golang v1.5.0
|
|
github.com/pborman/getopt/v2 v2.1.0
|
|
github.com/pion/stun v0.3.5
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/rogpeppe/go-internal v1.8.0
|
|
github.com/rubenv/sql-migrate v0.0.0-20210408115534-a32ed26c37ea
|
|
github.com/sirupsen/logrus v1.7.0 // indirect
|
|
github.com/ziutek/mymysql v1.5.4 // indirect
|
|
gitlab.com/yawning/obfs4.git v0.0.0-20210511220700-e330d1b7024b
|
|
gitlab.com/yawning/utls.git v0.0.12-1
|
|
golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf // indirect
|
|
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d
|
|
golang.org/x/sys v0.0.0-20210817190340-bfb29a6856f2
|
|
gopkg.in/AlecAivazis/survey.v1 v1.8.8
|
|
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
|
|
upper.io/db.v3 v3.8.0+incompatible
|
|
)
|