Skip to content

Commit

Permalink
Added get and refresh IP options
Browse files Browse the repository at this point in the history
  • Loading branch information
ruped24 authored Jul 22, 2020
1 parent 94fda91 commit 4dce147
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions toriptables2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env python2
# Written by Rupe version 2
# Written by Rupe version 2.1
#
"""
Tor Iptables script is an anonymizer
Expand All @@ -12,7 +12,6 @@
from subprocess import call, check_call, CalledProcessError
from os.path import isfile, basename
from os import devnull
import os
from sys import stdout, stderr
from atexit import register
from argparse import ArgumentParser
Expand All @@ -26,7 +25,7 @@ class TorIptables(object):
def __init__(self):
self.local_dnsport = "53" # DNSPort
self.virtual_net = "10.0.0.0/10" # VirtualAddrNetwork
self.local_loopback = "127.0.0.1" # Local loopback
self.local_loopback = "127.0.0.1" # Local loopback
self.non_tor_net = ["192.168.0.0/16", "172.16.0.0/12"]
self.non_tor = ["127.0.0.0/9", "127.128.0.0/10", "127.0.0.0/8"]
self.tor_uid = getoutput("id -ur debian-tor") # Tor user uid
Expand All @@ -39,7 +38,7 @@ def __init__(self):
AutomapHostsOnResolve 1
TransPort %s
DNSPort %s
''' % (basename(__file__), self.trans_port, self.virtual_net,
''' % (basename(__file__), self.trans_port, self.virtual_net,
self.trans_port, self.local_dnsport)

def flush_iptables_rules(self):
Expand Down Expand Up @@ -115,7 +114,9 @@ def get_ip(self):
my_public_ip = getoutput('wget -qO - ifconfig.me')
if not my_public_ip:
exit(" \033[91m[!]\033[0m Can't get public ip address!")
print(" {0}".format("[\033[92m+\033[0m] Your IP is \033[92m%s\033[0m" % my_public_ip))
print(" {0}".format("[\033[92m+\033[0m] Your IP is \033[92m%s\033[0m" % my_public_ip))


if __name__ == '__main__':
parser = ArgumentParser(
description=
Expand All @@ -131,7 +132,7 @@ def get_ip(self):
parser.add_argument('-r',
'--refresh',
action='store_true',
help='This option will change the circuit and gives another IP address')
help='This option will change the circuit and gives new IP')
parser.add_argument('-i',
'--ip',
action='store_true',
Expand All @@ -154,7 +155,7 @@ def get_ip(self):
elif args.ip:
load_tables.get_ip()
elif args.refresh:
os.system("kill -HUP $(pidof tor)")
call(['kill', '-HUP', '%s' % getoutput('pidof tor')])
load_tables.get_ip()
else:
parser.print_help()
Expand Down

1 comment on commit 4dce147

@ruped24
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Refactored

Please sign in to comment.