Update toriptables2.py
This commit is contained in:
parent
dbb0b1a41d
commit
95c7a0d3f7
1 changed files with 9 additions and 6 deletions
|
@ -8,7 +8,7 @@ and traffic including DNS through the tor network.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
from commands import getoutput
|
from commands import getoutput
|
||||||
from subprocess import call, check_call
|
from subprocess import call, check_call, CalledProcessError
|
||||||
from os.path import isfile
|
from os.path import isfile
|
||||||
from os import devnull
|
from os import devnull
|
||||||
from sys import stdout, stderr
|
from sys import stdout, stderr
|
||||||
|
@ -44,10 +44,13 @@ DNSPort 53
|
||||||
import sys
|
import sys
|
||||||
sys.tracebacklimit = 0
|
sys.tracebacklimit = 0
|
||||||
fnull = open(devnull, 'w')
|
fnull = open(devnull, 'w')
|
||||||
tor_restart = check_call(["service", "tor", "restart"],
|
try:
|
||||||
stdout=fnull, stderr=fnull)
|
tor_restart = check_call(["service", "tor", "restart"],
|
||||||
if tor_restart is 0:
|
stdout=fnull, stderr=fnull)
|
||||||
print(" {0}".format("[\033[92m+\033[0m] Anonymizer \033[92mON\033[0m"))
|
if tor_restart is 0:
|
||||||
|
print(" {0}".format("[\033[92m+\033[0m] Anonymizer \033[92mON\033[0m"))
|
||||||
|
except CalledProcessError as err:
|
||||||
|
print("\n[!] Command failed: %s" % err.cmd)
|
||||||
|
|
||||||
call(["iptables", "-t", "nat", "-A", "OUTPUT", "-m", "owner", "--uid-owner",
|
call(["iptables", "-t", "nat", "-A", "OUTPUT", "-m", "owner", "--uid-owner",
|
||||||
"%s" % self.tor_uid, "-j", "RETURN"])
|
"%s" % self.tor_uid, "-j", "RETURN"])
|
||||||
|
@ -101,4 +104,4 @@ if __name__ == '__main__':
|
||||||
else:
|
else:
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
print(" [!] Run as super user: %s" % err[1])
|
print("[!] Run as super user: %s" % err[1])
|
||||||
|
|
Loading…
Reference in a new issue