TorUtils
TorUtils copied to clipboard
PHP classes for interacting with Tor over the control protocol, querying directory authorities and servers, and DNS exit lists.
First of all: Thanks for this library. I would like to get the informations of this endpoint ```tor/status-vote/current/authority```. As far as I have seen there is currently no way to...
dns server
``` try { $isTor = TorDNSEL::IpPort( $_SERVER['SERVER_ADDR'], $_SERVER['SERVER_PORT'], $_SERVER['REMOTE_ADDR'] ); var_dump($isTor); } catch (\Exception $ex) { echo $ex->getMessage() . "\n"; } ``` This will always result in error: ``` Warning:...