-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
This script allows you to execute Python or Bash scripts/commands through the Tor network using a Docker container | ||
|
||
### Prerequisites | ||
- Python 3 | ||
- Docker | ||
|
||
|
||
### Execute a Python script: | ||
python3 Execute_with_TOR_docker.py --python your_script.py | ||
|
||
### Execute a Bash script: | ||
python3 Execute_with_TOR_docker.py --bash your_script.sh | ||
|
||
### Execute a curl command through Tor: | ||
python3 Execute_with_TOR_docker.py --bash "curl 'https://api.ipify.org?format=json'" | ||
|
||
In this example, the result of the command should be the IP address of the TOR exit node used. | ||
![Uploading image.png…]() |