-
-
Notifications
You must be signed in to change notification settings - Fork 364
Description
Firo-qt makes several DNS calls to seednodes every time it's launched, to bootstrap and join the Firo network.
These servers are owned by the Firo team and protected by CloudFlare:
Lines 345 to 353 in cf19353
vSeeds.push_back(CDNSSeedData("amsterdam.firo.org", "amsterdam.firo.org", false)); | |
vSeeds.push_back(CDNSSeedData("australia.firo.org", "australia.firo.org", false)); | |
vSeeds.push_back(CDNSSeedData("chicago.firo.org", "chicago.firo.org", false)); | |
vSeeds.push_back(CDNSSeedData("london.firo.org", "london.firo.org", false)); | |
vSeeds.push_back(CDNSSeedData("frankfurt.firo.org", "frankfurt.firo.org", false)); | |
vSeeds.push_back(CDNSSeedData("newjersey.firo.org", "newjersey.firo.org", false)); | |
vSeeds.push_back(CDNSSeedData("sanfrancisco.firo.org", "sanfrancisco.firo.org", false)); | |
vSeeds.push_back(CDNSSeedData("tokyo.firo.org", "tokyo.firo.org", false)); | |
vSeeds.push_back(CDNSSeedData("singapore.firo.org", "singapore.firo.org", false)); |
While seednodes are necessary, contacting them through DNS and more so, CloudFlare, has privacy implications. Cloudflare is used by the vast majority of internet services and are known for tracking users across websites/services. Every time a user fires up a firo-qt wallet, CloudFlare knows a request for a Firo seednode was made and from where. Basically, every time firo-qt is launched, CloudFlare knows the person behind that ip address is using Firo and the exact moment they launched the wallet. These are sensitive information.
A solution would be to directly call the IP addresses. This would avoid DNS calls entirely. I know Bitcoin used dns for seednodes (i don't know how they do now), but if there aren't strong reasons to do so, i'd avoid it.
I tried to run firo-qt by hardcoding the ip addresses of seednodes instead of using DNS and could connect to the network without issues or noticeable performance impact. I opened a pr with the changes in case we decide to go that way: #1442
On a related note i opened another issue, to discuss the diversification of seednodes: #1441