https://github.com/rix4uni/wordgen
Easy wordlist generator tool for backup files.
https://github.com/rix4uni/wordgen
backup-files bug-bounty bugbounty bugbountytips hacking infosec osint osint-resources osint-tool penetration-testing pentest-tool pentesting recon reconnaissance security security-tools threat-intelligence wordlist-generator
Last synced: 5 months ago
JSON representation
Easy wordlist generator tool for backup files.
- Host: GitHub
- URL: https://github.com/rix4uni/wordgen
- Owner: rix4uni
- Created: 2024-11-22T10:20:29.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-11-22T10:57:08.000Z (11 months ago)
- Last Synced: 2025-03-31T19:47:05.005Z (6 months ago)
- Topics: backup-files, bug-bounty, bugbounty, bugbountytips, hacking, infosec, osint, osint-resources, osint-tool, penetration-testing, pentest-tool, pentesting, recon, reconnaissance, security, security-tools, threat-intelligence, wordlist-generator
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## wordgen
Easy wordlist generator tool for backup files.
## Installation
```
go install github.com/rix4uni/wordgen@latest
```## Download prebuilt binaries
```
wget https://github.com/rix4uni/wordgen/releases/download/v0.0.2/wordgen-linux-amd64-0.0.2.tgz
tar -xvzf wordgen-linux-amd64-0.0.2.tgz
rm -rf wordgen-linux-amd64-0.0.2.tgz
mv wordgen ~/go/bin/wordgen
```
Or download [binary release](https://github.com/rix4uni/wordgen/releases) for your platform.## Compile from source
```
git clone --depth 1 github.com/rix4uni/wordgen.git
cd wordgen; go install
```## Usage
```
Usage of wordgen:
-e string
Comma separated list of extensions
-path string
Path or list of paths to add (comma-separated or a file)
-silent
Silent mode.
-version
Print the version of the tool and exit.
```## Usage Examples
**Single URL, Without extensions:**
```
▶ echo "https://pentestingdorks.netlify.app" | wordgen -path "github, admin"https://pentestingdorks.netlify.app/github
https://pentestingdorks.netlify.app/admin
```**Single URL, With extensions:**
```
▶ echo "https://pentestingdorks.netlify.app" | wordgen -path "github, admin" -e ".zip, .php"https://pentestingdorks.netlify.app/github.zip
https://pentestingdorks.netlify.app/github.php
https://pentestingdorks.netlify.app/admin.zip
https://pentestingdorks.netlify.app/admin.php
```**Multiple URLs with paths file, Without extensions:**
```
▶ cat subs.txt | wordgen -path wordlist.txthttps://pentestingdorks.netlify.app/github
https://pentestingdorks.netlify.app/admin
```**Multiple URLs with paths file, Multiple URLs, With extensions:**
```
▶ cat subs.txt | wordgen -path wordlist.txt -e ".zip, .php"https://pentestingdorks.netlify.app/github.zip
https://pentestingdorks.netlify.app/github.php
https://pentestingdorks.netlify.app/admin.zip
https://pentestingdorks.netlify.app/admin.php
```