Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valdikss/tor-relay-scanner
Tor Relay availability checker, for using it as a bridge in countries with censorship
https://github.com/valdikss/tor-relay-scanner
proxy-checker proxy-scan proxy-scanner tor
Last synced: 16 days ago
JSON representation
Tor Relay availability checker, for using it as a bridge in countries with censorship
- Host: GitHub
- URL: https://github.com/valdikss/tor-relay-scanner
- Owner: ValdikSS
- Created: 2022-01-12T22:38:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-07T17:53:48.000Z (3 months ago)
- Last Synced: 2024-08-07T21:13:23.365Z (3 months ago)
- Topics: proxy-checker, proxy-scan, proxy-scanner, tor
- Language: Python
- Homepage:
- Size: 36.1 KB
- Stars: 323
- Watchers: 23
- Forks: 36
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tor Relay Availability Checker
==============================This small script downloads all Tor Relay IP addresses from [onionoo.torproject.org](https://onionoo.torproject.org/) directly and via embedded proxies, and checks whether random Tor Relays are reachable from your Internet connection.
It could be used to find working Relay in a countries with Internet censorship and blocked Tor, and use it as Bridge to connect to Tor network, bypassing standard well-known nodes embedded into Tor code.
## How to use with Tor Browser
Works on Windows and Linux. Not tested on macOS.
1. Download latest version from [Releases](https://github.com/ValdikSS/tor-relay-scanner/releases) page.
2. Put the file into Tor Browser's directory.
3. **(Windows)**: Create a shortcut (link) to the file and append the following command line in shortcut settings: `-g 1 --timeout 3 --browser --start-browser`
**(Linux)** : Create a shortcut to the file, launching it using `python3`, and append the following arguments: `-g 1 --timeout 3 --browser --start-browser`.
The quick way to do this is to create a script with the following command:
`echo -e '#!/bin/sh\nexec python3' ./tor-relay-scanner-*.pyz '-g 1 --timeout 3 --browser --start-browser' > run.sh && chmod +x run.sh`
4. From now on, launch Tor Browser using the shortcut you've created in step 3. It will scan for reachable Relays, add it to Tor Browser configuration file (prefs.js), and launch the browser.## How to use with Tor (daemon)
This utility is capable of generating `torrc` configuration file containing Bridge information. Launch it with the following arguments:
`--torrc --outfile /etc/tor/bridges.conf`
And append:
`%include /etc/tor/bridges.conf`
to the end of `/etc/tor/torrc` file to make Tor daemon load it.
## How to use as a standalone tool
**Windows**: download ***.exe** file from [Releases](https://github.com/ValdikSS/tor-relay-scanner/releases) and run it in console (`start → cmd`)
**Linux & macOS**: download ***.pyz** file from [Releases](https://github.com/ValdikSS/tor-relay-scanner/releases) and run it with Python 3.7+:
`python3 tor-relay-scanner.pyz`