istor
Identify if an IP is a Tor exit node, for Rust.
Install
You can use istor as a CLI tool or as a crate
CLI usage
istor --ip <IP> [options]
options:
--connect -> Connect to the tor online list of nodes instead of using hardcoded values. Requires internet connection
--quiet -> Do not display version + author info. Useful if a programm is going to read the output
API
get_nodes
If you set connect to true, the api might take longer to respond, as it will have to connect to https://check.torproject.org/torbulkexitlist to get the up-to-date exit node list. Usually the hardcoded list will be up-to-date, but always check for new releases!
extern crate istor;
use istor;