
GitHub에서 엔드포인트 찾기.
이 Go 도구는 GitHub에서 검색을 수행하고 결과를 파싱하여 주어진 도메인의 엔드포인트를 찾습니다.
go install github.com/gwen001/github-endpoints@latest
또는
git clone https://github.com/gwen001/github-endpoints
cd github-endpoints
go install
$ 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
여러 토큰을 사용하려면 실행 파일 디렉터리에 한 줄에 하나의 토큰이 있는 .tokens 파일을 만드는 것이 좋습니다.
token1
token2
...
또는 쉼표로 구분된 토큰이 있는 환경 변수를 사용하세요.
export GITHUB_TOKEN=token1,token2...
GitHub가 속도 제한 경고를 발생시키면 토큰이 비활성화되지만 1분 후에 다시 활성화됩니다. -k 옵션을 사용하여 이 기능을 비활성화할 수 있습니다.
20/09/2022
25/09/2020
23/09/2020
10/08/2020
스크립트에 문제가 있으면 언제든지 이슈를 열어주세요.