Skip to content

Commit

Permalink
Update to the latest Tor.
Browse files Browse the repository at this point in the history
Fix #43
Fix #35
  • Loading branch information
basil00 committed Sep 11, 2021
1 parent 6289c53 commit b275d01
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.0
2.1
10 changes: 5 additions & 5 deletions build.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
# (C) 2019, all rights reserved,
# (C) 2021, all rights reserved,
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand All @@ -21,7 +21,7 @@
set -e

WINDIVERT=WinDivert-2.2.0-B
TOR=tor-win32-0.4.1.6
TOR=tor-win32-0.4.5.10
VERSION=`cat VERSION`

echo "Checking for dependencies..."
Expand Down Expand Up @@ -72,9 +72,9 @@ for FILE in \
"Tor/libcrypto-1_1.dll" \
"Tor/libssl-1_1.dll" \
"Tor/libwinpthread-1.dll" \
"Tor/libevent-2-1-6.dll" \
"Tor/libevent_core-2-1-6.dll" \
"Tor/libevent_extra-2-1-6.dll" \
"Tor/libevent-2-1-7.dll" \
"Tor/libevent_core-2-1-7.dll" \
"Tor/libevent_extra-2-1-7.dll" \
"Tor/libgcc_s_sjlj-1.dll" \
"Tor/libssp-0.dll" \
"Tor/zlib1.dll" \
Expand Down
8 changes: 5 additions & 3 deletions hosts.deny
@@ -1,6 +1,8 @@
# This file contains a list of domains that are blocked via Tor.
# NOTE: These domains are *NOT* blocked when Tor diversion is disabled!
# The primary motivation for this list is to minimize Tor bandwidth.
# This file contains a list of domains that will be blocked when Tor
# diversion is enabled.
#
# Warning: The primary motivation for this list is to minimize Tor bandwidth,
# and NOT security nor privacy.

# Windows update:
download.windowsupdate.com
Expand Down
8 changes: 4 additions & 4 deletions install.nsi
@@ -1,5 +1,5 @@
; install.nsi
; (C) 2018, all rights reserved,
; (C) 2021, all rights reserved,
;
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -52,9 +52,9 @@ Section ""
File "libcrypto-1_1.dll"
File "libssl-1_1.dll"
File "libwinpthread-1.dll"
File "libevent-2-1-6.dll"
File "libevent_core-2-1-6.dll"
File "libevent_extra-2-1-6.dll"
File "libevent-2-1-7.dll"
File "libevent_core-2-1-7.dll"
File "libevent_extra-2-1-7.dll"
File "libgcc_s_sjlj-1.dll"
File "libssp-0.dll"
File "zlib1.dll"
Expand Down
11 changes: 5 additions & 6 deletions traffic.deny
Expand Up @@ -5,12 +5,11 @@
# Notes:
# - This file uses the WinDivert filter language, see:
# (https://reqrypt.org/windivert-doc.html) for more information.
# - This is filter in addition to "web-only" mode; the two filters operate
# independently.
# - ipv6 and non-tcp (except port 53 UDP) will be dropped regardless of what
# this file specifies. However, it is more efficient to filter such
# traffic here.
# - Traffic is dropped if and only if the filter evaluates to "true".
# - This is an additional filter on top of "web-only" mode (the two filters
# operate independently).
# - ipv6 and non-tcp (except port 53 UDP) traffic will be dropped regardless
# of the contents of this file.
# - Traffic will be dropped if and only if this filter evaluates to "true".

(ipv6? true: false) # IPv6 always dropped.
or
Expand Down

0 comments on commit b275d01

Please sign in to comment.