https://github.com/siuxsa/wordlist-generator
Target Wordlist Making
https://github.com/siuxsa/wordlist-generator
bugbounty bugbounty-tool hacking-tool haking tools wordlist-generator
Last synced: 5 months ago
JSON representation
Target Wordlist Making
- Host: GitHub
- URL: https://github.com/siuxsa/wordlist-generator
- Owner: siuxsa
- Created: 2025-03-03T20:41:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-03T20:41:55.000Z (over 1 year ago)
- Last Synced: 2025-03-04T10:41:05.770Z (over 1 year ago)
- Topics: bugbounty, bugbounty-tool, hacking-tool, haking, tools, wordlist-generator
- Language: Shell
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wordlist Maker
 
A Bash script to extract unique words from URLs, perfect for creating custom wordlists for penetration testing or data analysis.
## Features
- **URL Parsing**: Extracts path segments after the domain (third `/`).
- **Extension Removal**: Strips common file extensions (e.g., `.js`, `.php`, `.html`).
- **Duplicate Filtering**: Automatically removes duplicate entries.
- **Input/Output Support**: Specify custom input and output files.
- **User-Friendly**: Includes a help menu and execution banner.
## Installation
1. **Clone the Repository**:
```bash
git clone https://github.com/siuxsa/Wordlist-Generator.git
cd Wordlist-Generator
```
2. **Make the Script Executable**:
```bash
chmod +x wordlist maker.sh
```
3. **Usage**
```bash
./wordlist maker.sh -l -o
```
## How It Works
- Extract Paths: Removes the domain (everything before the third /).
- Remove Extensions: Strips file extensions like .js, .jpg, etc.
- Split Words: Breaks path segments into words using /, -, and _ as delimiters.
- Deduplicate: Sorts and removes duplicates for a clean output.