Jack Wampler
Jack Wampler
Maybe a better (more comfortable) intermediary step for browsers is something like HSTS where sites can opt in to a "strict" mode for DNS resolution. My understanding is that browsers...
update - as an example (and for my own use) I have built some of the recent releases from source with ubuntu as the base docker image. Would love to...
> What is the motivation to forward-port this code to Go 1.17? I am interested in using this code for a proof of concept research effort. Go 1.17 happens to...
Not sure if this is still relevant, but leaving a comment just in case. I ran into this through the golang wrapper for this library (`github.com/pebbe/zmq4`). I don't think there...
related: #135
Design proposal: * remove the [hard-coded subnet specification](https://github.com/refraction-networking/gotapdance/blob/b563c6928d2acf9557ad6ffd4005e3c790822e3a/tools/clientconf/clientconf.go#L141) in the `tools/clientconfig/clientconfig.go` file. * add a `--subnet-file` option that takes a path to a TOML file, parses it into a `PhantomSubnetsList`...
I was thinking host on ec2. it doesn't need to be colocated with the station The stats info is set throughout the registration and connection process, but we can add...
We are working on a better solution to this issue. The decision to use the replace over modified imports was made so that we wouldn't have to fork (and keep...
We could in theory use the [obfs4ServerFactory](https://github.com/Yawning/obfs4/blob/77af0cba934d73c4baeb709560bcfc9a9fbc661c/transports/obfs4/obfs4.go#L226) directly and do the generation steps done by [obfs4.ServerFactory](https://github.com/Yawning/obfs4/blob/77af0cba934d73c4baeb709560bcfc9a9fbc661c/transports/obfs4/obfs4.go#L108) without the `statedir` ourselves, but for now that struct is not exposed.
#130 adds a temporary fix that creates an [ioutil.tempdir](https://pkg.go.dev/io/ioutil#TempDir) for each obfs4 session ensuring separation of state. However this is probably not a good long-term fix as file descriptor limitations...