Cool project, which lead me to this post: https://eli.sohl.com/2020/06/10/sybil-defense.html I'm in this space right now (Sybil-resistant DHTs) for an identity project and finding things like this is absolute gold for me. Is there a good place to find more articles on modern sybil protection mechanisms (other than the proof-of-whatever blockchain bs)?
Theseus DHT Protocol (2018)
21–30 of 43 posts
Re: Theseus DHT Protocol (2018)
#22> To a passive observer, all Theseus DHT protocol traffic is indistinguishable from random noise. This. And it should have been a design requirement for every protocol on the internet since day one.
It's a cool property for sure, but in reality it's pretty difficult to implement, especially if you want a protocol that's extensible, interoperable, or allows open communication. At minimum, you're probably going to have to assume any participants trying to speak the protocol to each other have pre-shared cryptographic keys and/or protocol parameters. Even a protocol like Wireguard for example, which does hardcode p…
Re: Theseus DHT Protocol (2018)
#23This seems to be ~4 years old. Have any cryptographers reviewed / audited this protocol in the interim? A quick google search comes up empty [1], and google scholar doesn't show anything [2]. [1]: https://www.google.com/search?&q=Theseus+dht+protocol+%22aud... [2]: https://scholar.google.com/scholar?q=theseus+dht+protocol
This is at best an obfuscation attempt to make fingerprinting more expensive, just like BitTorrent protocol encryption[3].
† I Am Not A Cryptographer
[0] https://support.signal.org/hc/en-us/articles/360007060632-Wh...
[1] https://en.wikipedia.org/wiki/Certificate_authority
[2] https://en.wikipedia.org/wiki/Web_of_trust
[3] https://en.wikipedia.org/wiki/BitTorrent_protocol_encryption
Re: Theseus DHT Protocol (2018)
#24Re: Theseus DHT Protocol (2018)
#25Earlier quoted context omitted.
It's a cool property for sure, but in reality it's pretty difficult to implement, especially if you want a protocol that's extensible, interoperable, or allows open communication. At minimum, you're probably going to have to assume any participants trying to speak the protocol to each other have pre-shared cryptographic keys and/or protocol parameters. Even a protocol like Wireguard for example, which does hardcode p…
Can you explain this, how can it be indistiguishable from random noise? What does that even mean? And why is it even important/useful? Surely even if it looks like noise anyone can see that you are communicating with the DHT network?
While this is not a universally useful property, it can be valuable in situations where even being able to detect a device is using a particular protocol is a problem. A good example is using an anonymization network like Tor in a repressive country like China. Even if your data is protected by Tor, you probably don't want the authorities to know you're using Tor at all.
As you said, one of the biggest problems with this is that even if the protocol itself is perfect, it's not worth much if the network participants are known and communicating with them is itself evidence you're using the protocol. The solution to that would either be making the participants non-public and hard to discover (so an observer doesn't know you're talking to a network participant) or having participants do a lot of things other than participate in the network you're trying to hide. Tor for example takes the former approach with non-advertised "bridges" that you have to know about via some out of band method (e.g. someone emails one to you).
In practice, this indistinguishably property is becoming less useful even when it works given the ubiquity of "normal" encrypted protocols like SSL/TLS. Arguably just using TLS is far better than trying to look like random noise even if you're trying to hide, since random noise on a network is much less common than TLS and probably more of a red flag these days.
Re: Theseus DHT Protocol (2018)
#26Does it allow someone with knowledge of a key to find the IP addresses of other people interested in that key? Because if yes, the other security guarantees are not all that interesting. The fact that Tor is mentioned would suggest that you have to add that to be secure.
I just had a brief read of the protocol but my understanding is yes, there is nothing like onion routing or similar that could disguise to a peer that is serving the data that the requester is indeed the one who is interested in it.
Re: Theseus DHT Protocol (2018)
#27Oooh interesting! I've been reading up on DHT's for the first time recently (I'm very late to the party). It looks like the original inspiration was an anti-censorship network for sharing/providing scientific papers: https://eli.sohl.com/2017/02/17/theseus-robust-system-for-pr... But as another poster noted, the project seems to be defunct do it being a solo effort: https://eli.sohl.com/2017/02/17/theseus-robust-syst…
Re: Theseus DHT Protocol (2018)
#28Re: Theseus DHT Protocol (2018)
#29I learned about Elligator quite recently and was shocked by how rarely it's actually been deployed (or even implemented), very happy to see it being used here. > Release date: 4/20/2018 > Revision date: 10/8/2018 Would be nice to get a (2018) in the title.
The most common encrypted protocols advertise the cipher suite they're using, so there is little value in concealing the format of the keys being exchanged. And protocols trying to hide their existence entirely are pretty uncommon.
Re: Theseus DHT Protocol (2018)
#30I learned about Elligator quite recently and was shocked by how rarely it's actually been deployed (or even implemented), very happy to see it being used here. > Release date: 4/20/2018 > Revision date: 10/8/2018 Would be nice to get a (2018) in the title.