3

I need to know the list of all entry nodes. Is it possible to do this? I found here https://www.dan.me.uk/tornodes a list of all nodes or only exit nodes but I only need entry nodes.

user3688491
  • 33
  • 1
  • 1
  • 3

3 Answers3

2

You already have them in that list, you only need to look at those with the "Guard" flag which specifies that they're entry nodes, for example:

4484.0298.4949.1082|ServerName|443|80|GFHRSDV|259492|Tor 0.2.9.10|

You'll only have to extract those with the G flag.

Fake News
  • 36
  • 1
0

https://atlas.torproject.org/#search/flag:Guard Here you can see also all nodes with the flag "Guard".

NewUser
  • 117
  • 11
0

As NewUser suggested, go to https://metrics.torproject.org/rs.html#search/flag:Guard, add your filters and with a quick network inspection, you will find out that there is a JSON endpoint listing all the entries and it has filters too.

For example, to get all the running Exit nodes, we have

https://onionoo.torproject.org/details?search=flag:Exit%20running:true

to get all the running Guard nodes, we have

https://onionoo.torproject.org/details?search=flag:Guard%20running:true

Binar Web
  • 101
  • 3