Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xsha/GoLinkFinder
A fast and minimal JS endpoint extractor
https://github.com/0xsha/GoLinkFinder
bugbounty endpoint-discovery linkextractor pentest-tool pentesting pentesting-tools
Last synced: 5 days ago
JSON representation
A fast and minimal JS endpoint extractor
- Host: GitHub
- URL: https://github.com/0xsha/GoLinkFinder
- Owner: 0xsha
- License: mit
- Created: 2020-01-30T16:28:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-13T12:05:10.000Z (10 months ago)
- Last Synced: 2024-08-01T10:16:27.522Z (3 months ago)
- Topics: bugbounty, endpoint-discovery, linkextractor, pentest-tool, pentesting, pentesting-tools
- Language: Go
- Size: 11.7 KB
- Stars: 282
- Watchers: 6
- Forks: 42
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bugbounty-tools - GoLinkFinder - A fast and minimal JS endpoint extractor (Recon / Links)
README
# GoLinkFinder
A minimal JS endpoint extractor
# Why?
To extract endpoints in both HTML source and embedded javascript files. Useful for bug hunters, red teamers, infosec ninjas.
# Version
1.0.0-alpha
# Usage?
```[-d|--domain] is required
usage: goLinkFinder [-h|--help] -d|--domain "" [-o|--out ""]
GoLinkFinder
Arguments:-h --help Print help information
-d --domain Input a URL.
-o --out File name : (e.g : output.txt)
```# How?
best used with grep
```
GoLinkFinder -d https://github.com | grep api
```Output :
```
"https://api.github.com/_private/browser/stats"
"https://api.github.com/_private/browser/errors"
```you can easily pipe out its with your other tools.
# Watch
[![asciicast](https://asciinema.org/a/HSM3Po0HC8s03XtXw3kw2UuHa.svg)](https://asciinema.org/a/HSM3Po0HC8s03XtXw3kw2UuHa)
# Requirements
Go >= 1.13
# Installation
```
go install github.com/0xsha/GoLinkFinder@latest
```# Feature request or found an issue?
Please write a patch to fix it and then pull a request.
# References
Python implementation:
https://github.com/GerbenJavado/LinkFinder