|
| 1 | + |
1 | 2 | # Auto Change Tor IP
|
2 | 3 |
|
3 |
| -* This tool automates the process of periodically changing the Tor IP address. |
4 |
| -* Basically it enters a loop where it continuously fetches a new IP address through Tor proxies. |
5 |
| -* Restart tor service, and you got a new IP :D |
| 4 | +This tool automates the process of periodically changing the Tor IP address. |
| 5 | +Basically, it enters a loop where it continuously fetches a new IP address through Tor proxies. |
| 6 | +Restart the Tor service, and you got a new IP :D |
6 | 7 |
|
7 |
| -> [!IMPORTANT] |
8 |
| -> This version of the tool is currently supported only on Unix-like operating systems. |
| 8 | +> **IMPORTANT** |
| 9 | +> This version of the tool is supported on both Linux and Windows operating systems. |
9 | 10 |
|
10 |
| -## Usage |
| 11 | +## Features |
| 12 | +- Automatic Tor IP address change. |
| 13 | +- Supports both Linux and Windows. |
| 14 | +- Requires Tor service to be running. |
| 15 | + |
| 16 | +## Installation |
| 17 | + |
| 18 | +### Linux |
11 | 19 |
|
12 | 20 | 1. Clone the repository:
|
13 | 21 |
|
|
27 | 35 | pip install -r requirements.txt
|
28 | 36 | ```
|
29 | 37 |
|
30 |
| -4. Run the script: |
| 38 | +4. Install Tor (if not already installed): |
| 39 | + |
| 40 | + For Ubuntu/Debian-based systems, run: |
| 41 | + |
| 42 | + ```bash |
| 43 | + sudo apt update |
| 44 | + sudo apt install tor |
| 45 | + ``` |
| 46 | + |
| 47 | +5. Run the script with root privileges: |
31 | 48 |
|
32 | 49 | ```bash
|
33 | 50 | sudo python3 IP-Changer.py
|
34 | 51 | ```
|
35 |
| -<br> |
| 52 | + |
| 53 | +### Windows |
| 54 | + |
| 55 | +1. Clone the repository: |
| 56 | + |
| 57 | + ```bash |
| 58 | + git clone https://github.com/isPique/Tor-IP-Changer.git |
| 59 | + ``` |
| 60 | + |
| 61 | +2. Navigate to the project directory: |
| 62 | + |
| 63 | + ```bash |
| 64 | + cd Tor-IP-Changer |
| 65 | + ``` |
| 66 | + |
| 67 | +3. Install required libraries: |
| 68 | + |
| 69 | + ```bash |
| 70 | + pip install -r requirements.txt |
| 71 | + ``` |
| 72 | + |
| 73 | +4. Install Tor: |
| 74 | + |
| 75 | + Download and install Tor from the official website: [Tor Browser Download](https://www.torproject.org/download/) |
| 76 | + |
| 77 | + After installing, you should be able to start the Tor service. |
| 78 | + |
| 79 | +5. Run the script: |
| 80 | + |
| 81 | + Open Command Prompt (CMD) and navigate to the directory where the script is located, then run: |
| 82 | + |
| 83 | + ```bash |
| 84 | + python IP-Changer.py |
| 85 | + ``` |
| 86 | + |
| 87 | +## Usage |
| 88 | + |
| 89 | +1. The script will automatically detect your operating system (Linux or Windows) and run the appropriate version. |
| 90 | +2. Once the script is running, it will periodically change your Tor IP address. |
| 91 | +3. The IP address will be changed at the interval you specify (in seconds). |
| 92 | +4. To stop the script, press `Ctrl + C` in the terminal. |
| 93 | + |
| 94 | +## Additional Information |
| 95 | + |
| 96 | +- On Linux, you may need to run the script with `sudo` privileges to interact with the Tor service. |
| 97 | +- On Windows, make sure that the Tor service is running and accessible. If you face issues, ensure that the Tor executable is correctly set up in your system's PATH. |
| 98 | +
|
| 99 | +## License |
| 100 | +
|
| 101 | +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. |
| 102 | +
|
| 103 | +## Screenshot |
36 | 104 |
|
37 | 105 | 
|
0 commit comments