Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions autoTOR.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,20 +67,20 @@ def change():
time.sleep(3)
print("\033[1;32;40m change your SOCKES to 127.0.0.1:9050 \n")
os.system("service tor start")
x = input("[+] time to change Ip in Sec [type=60] >> ")
lin = input("[+] how many time do you want to change your ip [type=1000]for infinte ip change type [0] >>")
if int(lin) ==int(0):
x = int(input("[+] time to change Ip in Sec [type=60] >> "))
lin = int(input("[+] how many time do you want to change your ip [type=1000]for infinte ip change type [0] >>"))
if lin is not 0:

while True:
try:
time.sleep(int(x))
time.sleep(x)
change()
except KeyboardInterrupt:

print('\nauto tor is closed ')
quit()

else:
for i in range(int(lin)):
time.sleep(int(x))
for i in range(lin):
time.sleep(x)
change()