Skip to content

Commit fb01e43

Browse files
authored
Update README.md
1 parent 848f1e6 commit fb01e43

File tree

1 file changed

+76
-8
lines changed

1 file changed

+76
-8
lines changed

README.md

Lines changed: 76 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
1+
12
# Auto Change Tor IP
23

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
67

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.
910
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
1119

1220
1. Clone the repository:
1321

@@ -27,11 +35,71 @@
2735
pip install -r requirements.txt
2836
```
2937

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:
3148

3249
```bash
3350
sudo python3 IP-Changer.py
3451
```
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
36104
37105
![Terminal](https://github.com/isPique/Tor-IP-Changer/blob/main/Terminal.jpg)

0 commit comments

Comments
 (0)