Changeset 2291331
- Timestamp:
- 04/25/2020 01:26:45 AM (6 years ago)
- Location:
- tor-router
- Files:
-
- 3 added
- 2 edited
-
tags/1.2.1 (added)
-
tags/1.2.1/readme.txt (added)
-
tags/1.2.1/tor-router.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tor-router.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tor-router/trunk/readme.txt
r2288948 r2291331 5 5 Requires at least: 2.8 6 6 Tested up to: 5.4 7 Stable tag: 1.2. 07 Stable tag: 1.2.1 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 10 11 11 Routes outgoing traffic through Tor or any HTTP / SOCKS Proxy. 12 13 12 14 13 == Description == … … 17 16 18 17 To check if the routing works properly, there is a button "Check IP" in the Tor Router settings. This connects to https://icanhazip.com to display your external IP. 19 20 21 18 22 19 == Installation == … … 27 24 4. To route through Tor you need to have it installed on your server (e.g. `apt-get install tor`), and set Tor Router to `SOCKS Mode`, Proxy Host `localhost`, Proxy Port `9050` (default) 28 25 29 30 26 == Screenshots == 31 27 32 28 1. View of Tor Router Settings 33 29 30 == Changelog == 34 31 35 == Changelog == 32 = 1.2.1 - 2020-04-25 = 33 * Bugfix Firewall 36 34 37 35 = 1.2.0 - 2020-04-22 = -
tor-router/trunk/tor-router.php
r2288948 r2291331 4 4 Plugin URI: https://wordpress.org/plugins/tor-router/ 5 5 Description: Routes outgoing traffic through Tor or any HTTP / SOCKS Proxy. 6 Version: 1.2. 06 Version: 1.2.1 7 7 Author: OnionBazaar 8 8 Author URI: http://onionbazaar.org … … 67 67 $obztorrouter_plugins_list = get_plugins(); 68 68 foreach ($obztorrouter_plugins_list as $key => $value) { 69 //$obztorrouter_this_plugin->guid70 69 if ( $key == 'snitch/snitch.php' ) $obztorrouter_snitch_installed = true; 71 70 } … … 224 223 $obz_exceptions = $obz_exceptions . "\n" . get_site_url(); 225 224 foreach(preg_split("/((\r?\n)|(\r\n?))/", $obz_exceptions) as $line) { 226 if ( substr($url, 0, strlen($line))==$line) $obz_allow = true; }225 if ((substr($url, 0, strlen($line))==$line) AND (trim($line)!='')) $obz_allow = true; } 227 226 228 227 if ($obz_allow) {
Note: See TracChangeset
for help on using the changeset viewer.