https://github.com/varppi/golddigger
GolDigger web crawler
https://github.com/varppi/golddigger
directory-bruteforce url-discovery web-crawler
Last synced: 8 months ago
JSON representation
GolDigger web crawler
- Host: GitHub
- URL: https://github.com/varppi/golddigger
- Owner: varppi
- License: gpl-3.0
- Created: 2024-02-19T15:01:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-09T07:15:12.000Z (10 months ago)
- Last Synced: 2025-08-23T18:07:02.938Z (10 months ago)
- Topics: directory-bruteforce, url-discovery, web-crawler
- Language: Go
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GoldDigger

### GolDigger is an easy to use automated web crawler and directory bruteforcer.
## Installation
```
go install github.com/Varppi/GoldDigger@latest
```
#### Add ~/go/bin to your $PATH
## Usage examples
```
#Basic
GoldDigger -u "https://somesite.com"
#Considers all URLs that have the string "sometimes.com" in it as part of the target scope
GoldDigger -u "https://somesite.com" -k somesite.com
#Saves website file URLs to an output file
GoldDigger -u "https://somesite.com" -q -o results
#Run directory bruteforce with a custom wordlist
GolDigger -u "https://somesite.com" -w ~/Seclists/Discovery/Web-Content/raft-medium-directories.txt
```
## Example output