Metadata-Version: 2.4
Name: subdomain-permut
Version: 0.0.7
Summary: A tool for generating subdomain permutations
Home-page: https://github.com/shriyanss/subdomain-permut
Author: Shriyans Sudhi
Author-email: shriyanss@ss0x00.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: psutil
Requires-Dist: tqdm
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

<p align="center">
  <a href="https://pypi.org/project/subdomain-permut" target="_blank"><img alt="PyPI - License" src="https://img.shields.io/pypi/l/subdomain-permut"></a>
  <a href="https://pypi.org/project/subdomain-permut/#history" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/subdomain-permut"></a>
  <a href="https://github.com/shriyanss/subdomain-permut/actions/workflows/publish.yml"><img alt="GitHub Actions Workflow Status" src="https://img.shields.io/github/actions/workflow/status/shriyanss/subdomain-permut/publish.yml"></a>
  <img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/shriyanss/subdomain-permut">
  <img alt="GitHub commit activity" src="https://img.shields.io/github/commit-activity/t/shriyanss/subdomain-permut">
  <a href="https://reddit.com/u/shriyanss" target="_blank"><img alt="Reddit User Karma" src="https://img.shields.io/reddit/user-karma/combined/shriyanss"></a>
  <a href="https://x.com/ss0x00" target="_blank"><img alt="X (formerly Twitter) Follow" src="https://img.shields.io/twitter/follow/ss0x00"></a>
</p>

<p align='center'>
  <img src="https://raw.githubusercontent.com/shriyanss/subdomain-permut/refs/heads/main/assets/logo.png" width="150">
  <img src="https://raw.githubusercontent.com/shriyanss/subdomain-permut/refs/heads/main/assets/screenshot.png">
</p>

# About
subdomain-permut is a powerful subdomain permutation tool designed for serious reconnaissance. It’s optimized to run on VPS setups with ample storage capacity, as its output can be massive—ranging from hundreds of gigabytes to even terabytes depending on the configuration.

With the right options enabled, subdomain-permut can generate nearly every conceivable subdomain a developer might think of. Just generate a permutation file and see for yourself—you might be surprised at what turns up 😉.

## Installation
### Using `pip`
Just run this command, and this tool will be installed:
```bash
pip install subdomain-permut
```

### By cloning the repo
```bash
git clone https://github.com/shriyanss/subdomain-permut.git
cd subdomain-permut
sudo python3 setup.py install
```

## Usage
You can simply run this command, and it will do most of the thigs automatically
```bash
subdomain-permut -l subdomains.txt -d site.com
```

```
usage: subdomain-permut [-h] [--list LIST] [--domain DOMAIN] [--level LEVEL] [--output OUTPUT] [--enrich ENRICH] [--method METHOD] [--ls] [--verbose]

Subdomain permutation tool

optional arguments:
  -h, --help            show this help message and exit
  --list LIST, -l LIST  Subdomains list
  --domain DOMAIN, -d DOMAIN
                        Domain name for the target
  --level LEVEL         Number of iterations to run through (default=2)
  --output OUTPUT, -o OUTPUT
                        Output file name (default=permut.txt)
  --enrich ENRICH, -e ENRICH
                        Enrich using given wordlist
  --method METHOD, -m METHOD
                        Subdomain Permutation methods to use (comma-separated). Run with --ls flag to see the list (default=subdotsub)
  --ls                  List permutation methods
  --verbose, -v         Verbose output
  ```
