commit
c9898cf261
95 changed files with 5217 additions and 0 deletions
20
engines/special/tor.php
Normal file
20
engines/special/tor.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
class TorRequest extends EngineRequest {
|
||||
public function get_request_url() {
|
||||
return "https://check.torproject.org/torbulkexitlist";
|
||||
}
|
||||
|
||||
public function parse_results($response) {
|
||||
$formatted_response = strpos($response, $_SERVER["REMOTE_ADDR"]) ? "It seems like you are using Tor" : "It seems like you are not using Tor";
|
||||
$source = "https://check.torproject.org";
|
||||
|
||||
return array(
|
||||
"special_response" => array(
|
||||
"response" => $formatted_response,
|
||||
"source" => $source
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue