proxytools- collection of scripts for harvesting & testing proxies |
git clone git://git.acid.vegas/proxytools.git |
Log | Files | Refs | Archive | README | LICENSE |
tor.md (919B)
1 # Tor is NOT what you think it is 2 3 4 # Hardcoded "Directory Authorities" control all voting on the entire Tor network: 5 - https://gitlab.torproject.org/tpo/core/tor/-/blob/main/src/app/config/auth_dirs.inc 6 7 # How many unique people are running relays 8 9 First let's analyze how many Relays ware on the network currently: 10 ``` 11 cat tor.json | jq -c .[] | wc -l 12 5828 13 ``` 14 15 Next, how many of these relays provide contact information: 16 ``` 17 cat tor.json | jq -c .[].contact | grep -v ^null | wc -l 18 4459 19 ``` 20 21 Let's now analyze the frequency of duplicate cntact information: 22 ``` 23 cat tor.json | jq -rc .[].contact | grep -v ^null | sort | uniq -c | sort -nr > relay_contact_frequency.txt 24 ``` 25 26 You can view these stats [here](./relay_contact_frequency.txt), but based on these results, some interesting observations are made: 27 - 435 relay operators are running more than 1 relay 28 - Almost 50 relay operators are running 10 or more relays