Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
github-endpoints — Find endpoints on GitHub. | Kitploit
Tools/GitHubGitHub/gwen001/github-endpoints
OSINT (Open Source Intelligence)ReconnaissanceInformation GatheringWeb SecurityPenetration Testing
GitHubgwen001/github-endpoints

github-endpoints

Find endpoints on GitHub.

View Repository
219403 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

github-endpoints

Find endpoints on GitHub.

go badge MIT license badge twitter badge


Description

This Go tool performs searches on GitHub and parses the results to find endpoints of a given domain.

Install

root@kitploit:~
go install github.com/gwen001/github-endpoints@latest

or

root@kitploit:~
git clone https://github.com/gwen001/github-endpoints
cd github-endpoints
go install

Usage

root@kitploit:~
$ github-endpoints -h

Usage of github-endpoints:
  -all
    	displays urls of all other domains, default=false
  -d string
    	domain you are looking for (required)
  -e	extended mode, also look for <dummy>example.com
  -k	exit the program when all tokens have been disabled
  -o string
    	output file, default: <domain>.txt
  -r	display relative urls, default=false
  -raw
    	raw output
  -t string
    	github token (required), can be:
    	  • a single token
    	  • a list of tokens separated by comma
    	  • a file (.tokens) containing 1 token per line
    	if the options is not provided, the environment variable GITHUB_TOKEN is readed, it can be:
    	  • a single token
    	  • a list of tokens separated by comma

If you want to use multiple tokens, you better create a .tokens file in the executable directory with 1 token per line

root@kitploit:~
token1
token2
...

or use an environment variable with tokens separated by comma:

root@kitploit:~
export GITHUB_TOKEN=token1,token2...

Tokens are disabled when GitHub raises a rate limit alert, however they are re-enable 1mn later. You can disable that feature by using the option -k.

Todo

  • change the order of the extra searches ?
  • ?

Changelog

20/09/2022

  • fix regexp for subdomains

25/09/2020

  • quick mode added
  • tokens can be read from any file

23/09/2020

  • fixed an issue in the api call (params name)
  • added binary

10/08/2020

  • creation

Feel free to open an issue if you have any problem with the script.

Download Tool