Skip to content
Open
Show file tree
Hide file tree
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
41 changes: 15 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,21 @@
# Auto_Tor_IP_changer V 2.1
change your Ip Address automatically This tool based on tor project
# Auto_Tor_IP_changer V 3.1
change your Ip Address automatically This tool based on tor project.


how to install this tools :
## Install
```
sudo apt-get install tor torsocks
pipx install requests[socks] invoke
```

* : requirements:
## Run
```
exec nohup invoke &
exec nohup torsocks firefox 2600.securedrop.tor.onion
```

sudo apt-get install tor
pip3 install requests[socks]
or just run autoTor it will install everything
---

1: git clone https://github.com/FDX100/Auto_Tor_IP_changer.git
With love from 2600 Hackers

2 : cd Auto_Tor_IP_changer

3 : python3 install.py

4 : interminal type ( aut ) any where you want

5 : type time to change IP

6: type how many time to change your ip

*[0 to infinte IP change]

6 : go to your browser / pc change sock proxy to 127.0.0.1:9050

7 : BOOOOOOMM

============
http://facebook.com/ninja.hackerz.kurdish/
http://reddit.com/r/2600
82 changes: 0 additions & 82 deletions autoTOR.py

This file was deleted.

18 changes: 0 additions & 18 deletions install.py

This file was deleted.

39 changes: 39 additions & 0 deletions tasks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# -*- coding: utf-8 -*-
'''
_ _______
/\ | | |__ __|
/ \ _ _| |_ ___ | | ___ _ __
/ /\ \| | | | __/ _ \ | |/ _ \| '__|
/ ____ \ |_| | || (_) | | | (_) | |
/_/ \_\__,_|\__\___/ |_|\___/|_|
V 3.0
from 2600 Hackers. We disarmed and anonymised your script that kept reporting back home at Aws.
'''

import time

try:
import requests
from invoke import task

except Exception:
print('[+] python3 requests[socks] and py-invoke is not installed')

def changeIp(ctx, seconds):
try:
time.sleep(int(seconds))
ctx.run(f'killall -HUP tor')
except KeyboardInterrupt:
break

@task
def rotate(context, seconds=60, rotations=1):
"Change your IP address every nth seconds for total nth rotations"
for _ in range(rotations):
changeIp(ctx,seconds)

@task(default=True)
def daemon(context, seconds=60):
"Change your IP address every nth seconds"
while True:
changeIp(context, seconds)