Home

Awesome

<h1 align="center">github-regexp</h1> <h4 align="center">Basically a regexp over a GitHub search.</h4> <p align="center"> <img src="https://img.shields.io/badge/go-v1.13-blue" alt="go badge"> <img src="https://img.shields.io/badge/license-MIT-green" alt="MIT license badge"> <a href="https://twitter.com/intent/tweet?text=https%3a%2f%2fgithub.com%2fgwen001%2fgithub-regexp%2f" target="_blank"><img src="https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Fgithub.com%2Fgwen001%2Fgithub-regexp" alt="twitter badge"></a> </p> <!-- <p align="center"> <img src="https://img.shields.io/github/stars/gwen001/github-regexp?style=social" alt="github stars badge"> <img src="https://img.shields.io/github/watchers/gwen001/github-regexp?style=social" alt="github watchers badge"> <img src="https://img.shields.io/github/forks/gwen001/github-regexp?style=social" alt="github forks badge"> </p> -->

Description

This Go tool performs the search supplied by the user on GitHub and apply the regexp also supplied by the user on all results. This can be use to find subdomains, endpoints, passwords, api keys...

Install

go install github.com/gwen001/github-regexp@latest

or

git clone https://github.com/gwen001/github-regexp
cd github-regexp
go install

Usage

$ github-regexp -h

Usage of github-regexp:
  -i	force the regexp to be case insensitive
  -k	exit the program when all tokens have been disabled
  -r string
    	regexp to search, default is SecLists secret-keywords list
  -s string
    	search term you are looking for (required)
  -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

token1
token2
...

or use an environment variable with tokens separated by comma:

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.

<img src="https://github.com/gwen001/github-regexp/raw/master/preview.png">

Todo

Changelog

25/09/2020

23/09/2020

13/08/2020

06/08/2020


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