Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/channyein1337/gup
gup aka Get All Urls parameters to create wordlists for brute forcing parameters.
https://github.com/channyein1337/gup
Last synced: 2 months ago
JSON representation
gup aka Get All Urls parameters to create wordlists for brute forcing parameters.
- Host: GitHub
- URL: https://github.com/channyein1337/gup
- Owner: byt3hx
- Created: 2021-12-04T13:37:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-04T13:58:57.000Z (almost 3 years ago)
- Last Synced: 2024-06-20T06:22:40.960Z (5 months ago)
- Language: Go
- Size: 1.49 MB
- Stars: 16
- Watchers: 1
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - channyein1337/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
```
![](https://raw.githubusercontent.com/channyein1337/gup/main/gup.png)### For Single Url
For a single parameter
```
▶ echo "http://localhost/index.php?id=1&redirect=true" | gup -s
```
![](https://github.com/channyein1337/gup/blob/main/gup-single-param.png?raw=true)
For multiple parameters
```
▶ echo "http://localhost/index.php?id=1&redirect=true" | gup -m
```
![](https://github.com/channyein1337/gup/blob/main/gup_multiple.png?raw=true)### For Mutliple Urls
For a single parameter
```
cat gau.txt | gup -s | sort -u
```
![](https://github.com/channyein1337/gup/blob/main/gup-single-file.png?raw=true)
For multiple parameters
```
cat gau.txt | gup -m | sort -u
```
![](https://github.com/channyein1337/gup/blob/main/gup-multi-file.png?raw=true)