Git-Hound : PinPoints Exposed API Keys On GitHub Using Pattern Matching

A batch-catching, pattern-matching, patch-attacking secret snatcher. GitHound pinpoints exposed API keys on GitHub using pattern matching, commit history searching, and a unique result scoring system. A batch-catching, pattern-matching, patch-attacking secret snatcher.

Features

  • GitHub/Gist code searching. This enables GitHound to locate sensitive information exposed across all of GitHub, uploaded by any user.
  • Generic API key detection using pattern matching, context, and Shannon entropy.
  • Commit history digging to find improperly deleted sensitive information (for repositories with <6 stars)..
  • Scoring system to emphasize confident results, filter out common false positives, and to optimize intensive repo digging.
  • Base64 detection and decoding
  • Options to build GitHound into your workflow, like custom regexes and results-only output mode.

Usage

echo “tillsongalloway.com” | git-hound or git-hound –subdomain-file subdomains.txt

Setup

  • Download the latest release of GitHound
  • Create a ./config.yml or ~/.githound/config.yml with your GitHub username and password (2FA accounts are not supported). See config.example.yml.
    1. If it’s your first time using the account on the system, you may receieve an account verification email.
  • echo "tillsongalloway.com" | git-hound

Use Cases

  • Corporate: Searching for exposed customer API keys

Knowing the pattern for a specific service’s API keys enables you to search GitHub for these keys. You can then pipe matches for your custom key regex into your own script to test the API key against the service and to identify the at-risk account.

echo “api.halcorp.biz” | githound –dig –many-results –regex-file halcorp-api-regexes.txt –results-only | python halapitester.py

For detecting future API key leaks, GitHub offers Push Token Scanning to immediately detect API keys as they are posted.

  • Bug Bounty Hunters: Searching for leaked employee API tokens

My primary use for GitHound is for finding sensitive information for Bug Bounty programs. For high-profile targets, the --many-results hack and --languages flag are useful for scraping >100 pages of results.

echo “uberinternal.com” | githound –dig –many-results –languages common-languages.txt –threads 100

Also Read – MSSQLi-DUET : MSSQL Injection-based Domain User Enumeration Tool

Flags

  • --subdomain-file – The file with the subdomains
  • --dig-files – Clone and search the repo’s files for results
  • --dig-commits – Clone and search the repo’s commit history for results
  • --many-results – Use result sorting and filtering hack to scrape more than 100 pages of results
  • --results-only – Print only regexed results to stdout. Useful for piping custom regex matches into another script
  • --no-repos – Don’t search repos
  • --no-gists – Don’t search Gists
  • --threads – Specify max number of threads for the commit digger to use.
  • --regex-file – Supply a custom regex file
  • --language-file – Supply a custom file with languages to search.
  • --config-file – Custom config file (default is config.yml)
  • --pages – Max pages to search (default is 100, the page maximum)
  • --no-scoring – Don’t use scoring to filter out false positives
  • --no-api-keys – Don’t perform generic API key searching. GitHound uses common API key patterns, context clues, and a Shannon entropy filter to find potential exposed API keys.
  • --no-files – Don’t flag interesting file extensions
  • --only-filtered – Only search filtered queries (languages)
  • --debug – Print verbose debug messages.

Related Tools

  • GitRob is an excellent tool that specifically targets an organization or user’s repositories for exposed credentials and displays them on a beautiful web interface.
R K

Recent Posts

Install Pip on Ubuntu 18.04: Python 3 and Python 2 Setup Guide

Pip is the official package manager for Python and the standard way to install libraries from…

15 hours ago

Install R on Ubuntu 18.04 from CRAN: Statistical Computing Setup

R is an open-source programming language and environment built for statistical computing and data visualization. It…

16 hours ago

Install Jenkins on Ubuntu 18.04: CI/CD Server Setup Guide

Jenkins is an open-source automation server that makes it easy to build CI/CD pipelines. Continuous integration…

16 hours ago

Install Android Studio on Ubuntu 18.04 with Snap and OpenJDK 8

Android Studio is the official IDE for Android development, built on JetBrains' IntelliJ IDEA platform. It…

16 hours ago

Install and Configure GitLab on Ubuntu 18.04 with Omnibus

GitLab is a web-based, open-source Git repository manager written in Ruby. It includes built-in tools for…

16 hours ago

Install Anaconda on Ubuntu 18.04: Python Data Science Setup Guide

Anaconda is the most widely used Python distribution for data science and machine learning. It bundles…

2 days ago