https://github.com/byt3hx/gup
gup aka Get All Urls parameters to create wordlists for brute forcing parameters.
https://github.com/byt3hx/gup
Last synced: 4 months ago
JSON representation
gup aka Get All Urls parameters to create wordlists for brute forcing parameters.
- Host: GitHub
- URL: https://github.com/byt3hx/gup
- Owner: byt3hx
- Created: 2021-12-04T13:37:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-04T13:58:57.000Z (almost 4 years ago)
- Last Synced: 2025-07-07T00:54:35.272Z (4 months ago)
- Language: Go
- Size: 1.49 MB
- Stars: 18
- Watchers: 1
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - byt3hx/gup - gup aka Get All Urls parameters to create wordlists for brute forcing parameters. (Go)
README
# Description
GUP is a tool to create wrodlists from the urls.
# Purpose
The purpose of this tool is to create wordlists for brute forcing parameters.
# Install
```
▶ go get github.com/channyein1337/gup
```
# Usage
```
▶ gup -h
Usage of gup:
-m For mutliple parameters
-s For a single parameter
```

### For Single Url
For a single parameter
```
▶ echo "http://localhost/index.php?id=1&redirect=true" | gup -s
```

For multiple parameters
```
▶ echo "http://localhost/index.php?id=1&redirect=true" | gup -m
```

### For Mutliple Urls
For a single parameter
```
cat gau.txt | gup -s | sort -u
```

For multiple parameters
```
cat gau.txt | gup -m | sort -u
```
