Do not sell that shit!
We have Developed New tool Only for Termux (nonroot)
Tor IP Changer Developed by SkyNetDox AnonGhost JokerS Sec HEX4GON1 WarGhost
with reason to Fuck Zionists! Here
import time
import os
import subprocess
import sys
import requests
def check_dependencies():
try:
check_pip = subprocess.check_output(‘dpkg -s python-pip’, shell=True)
if str(‘install ok installed’) in str(check_pip):
pass
except subprocess.CalledProcessError:
print(‘[+] pip not installed’)
subprocess.check_output(‘pkg update’,shell=True)
subprocess.check_output(‘pkg install python-pip -y’, shell=True)
print(‘[!] pip installed succesfully’)
try:
import requests
except Exception:
print(‘[+] python requests is not installed’)
os.system(‘pip install requests’)
os.system(‘pip install requests[socks]’)
print(‘[!] python requests is installed ‘)
try:
check_tor = subprocess.check_output(‘which tor’, shell=True)
except subprocess.CalledProcessError:
print(‘[+] tor is not installed !’)
subprocess.check_output(‘pkg update’,shell=True)
subprocess.check_output(‘pkg install tor -y’,shell=True)
print(‘[!] tor is installed succesfully ‘)
def main():
# Check for dependencies
check_dependencies()
# Clear the screen
os.system(“clear”)
# Print the banner
print(”’\033[1;32;40m \n
_________ ______ ________
______ /________ /_____________________ __ ___/___________
___ _ /_ __ \_ //_/ _ \_ ___/_ ___/ _____ \_ _ \ ___/
/ /_/ / / /_/ / ,< / __/ / _(__ ) ____/ // __/ /__
\____/ \____//_/|_| \___//_/ /____/ /____/ \___/\___/
V 2.1
Tor IP Changer Developed by SkyNetDox AnonGhost JokerS Sec HEX4GON1 WarGhost
with reason to Fuck Zionists! Here Join to Telegram @JokersSec @HEX4GON1
”’)
print(“\033[1;40;31m Visit our channel for more https://t.me/areaghostnet/\n”)
# Start Tor
os.system(“service tor start”)
# Wait for Tor to start
time.sleep(3)
# Print instructions to the user
print(“\033[1;32;40m change your SOCKES to 127.0.0.1:9050 \n”)
# Get the user’s input for the time interval and the number of IP changes
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] >>”)
# Check if the user wants to change their IP indefinitely
if int(lin) == 0:
# Run an infinite loop to change the IP indefinitely
while True:
try:
time.sleep(int(x))
change_ip()
except KeyboardInterrupt:
print(‘\nauto tor is closed ‘)
sys.exit()
else:
# Run a loop to change the IP a specified number of times
for i in range(int(lin) + 1):
time.sleep(int(x))
change_ip()
def change_ip():
# Reload Tor to change the IP address
os.system(“service tor reload”)
# Get the new IP address
url = ‘https://www.myexternalip.com/raw’
get_ip = requests.get(url, proxies=dict(http=’socks5://127.0.0.1:9050′, https=’socks5://127.0.0.1:9050′))
new_ip = get_ip.text
# Print the new IP address
print(‘[+] Your IP has been Changed to : ‘ + str(new_ip))
# Call the main function
if __name__ == “__main__”:
main()p
