This project is a Python script for generating .onion
V3 addresses for Tor services. It allows users to create random addresses or addresses with a specified prefix. The script supports generating a fixed number of addresses or running indefinitely for continuous address generation.
Note
To ensure a clean and isolated environment for the project dependencies, it's recommended to use Python's venv
module.
git clone https://github.com/joshuavanderpoll/Onion-V3-Generator.git
cd Onion-V3-Generator
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
git clone https://github.com/joshuavanderpoll/Onion-V3-Generator.git
cd Onion-V3-Generator
python -m venv .venv
.venv\Scripts\activate
pip3 install -r requirements.txt
To generate domains which start with "github" or "example" use:
python3 onion_generator github example
To contribute, first fork this repository, and clone
it. Make your changes, whether you're fixing bugs or adding features. When done, commit
your changes, push
them, and submit a pull request
for review to this repository.
If you're reporting an issue, make sure to include your Python version
(python --version), and any relevant command input, and output.