Added get and refresh IP options
This commit is contained in:
parent
94fda91db3
commit
4dce147afd
1 changed files with 8 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
||||||
#! /usr/bin/env python2
|
#! /usr/bin/env python2
|
||||||
# Written by Rupe version 2
|
# Written by Rupe version 2.1
|
||||||
#
|
#
|
||||||
"""
|
"""
|
||||||
Tor Iptables script is an anonymizer
|
Tor Iptables script is an anonymizer
|
||||||
|
@ -12,7 +12,6 @@ from commands import getoutput
|
||||||
from subprocess import call, check_call, CalledProcessError
|
from subprocess import call, check_call, CalledProcessError
|
||||||
from os.path import isfile, basename
|
from os.path import isfile, basename
|
||||||
from os import devnull
|
from os import devnull
|
||||||
import os
|
|
||||||
from sys import stdout, stderr
|
from sys import stdout, stderr
|
||||||
from atexit import register
|
from atexit import register
|
||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
|
@ -116,6 +115,8 @@ DNSPort %s
|
||||||
if not my_public_ip:
|
if not my_public_ip:
|
||||||
exit(" \033[91m[!]\033[0m Can't get public ip address!")
|
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__':
|
if __name__ == '__main__':
|
||||||
parser = ArgumentParser(
|
parser = ArgumentParser(
|
||||||
description=
|
description=
|
||||||
|
@ -131,7 +132,7 @@ if __name__ == '__main__':
|
||||||
parser.add_argument('-r',
|
parser.add_argument('-r',
|
||||||
'--refresh',
|
'--refresh',
|
||||||
action='store_true',
|
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',
|
parser.add_argument('-i',
|
||||||
'--ip',
|
'--ip',
|
||||||
action='store_true',
|
action='store_true',
|
||||||
|
@ -154,7 +155,7 @@ if __name__ == '__main__':
|
||||||
elif args.ip:
|
elif args.ip:
|
||||||
load_tables.get_ip()
|
load_tables.get_ip()
|
||||||
elif args.refresh:
|
elif args.refresh:
|
||||||
os.system("kill -HUP $(pidof tor)")
|
call(['kill', '-HUP', '%s' % getoutput('pidof tor')])
|
||||||
load_tables.get_ip()
|
load_tables.get_ip()
|
||||||
else:
|
else:
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
|
|
Loading…
Reference in a new issue