GitTools: pwn’ing websites with .git repositories available
GitTools
This repository contains three small python/bash scripts used for the Git research. Read about it here
Download
Finder
You can use this tool to find websites with their .git repository available to the public
Usage
This python script identifies websites with publicly accessible .git repositories. It checks if the .git/HEAD file contains refs/heads.
The input file should contain the targets one per line. The script will output discovered domains in the form of [*] Found: DOMAIN to stdout.
Dumper
This tool can be used to download as much as possible from the found .git repository from web servers which do not have directory listing enabled.
Usage
Note: This tool has no 100% guaranty to completely recover the .git repository. Especially if the repository has been compressed into pack-files, it may fail.
Extractor
A small bash script to extract commits and their content from a broken repository.
This script tries to recover incomplete git repositories:
- Iterate through all commit-objects of a repository
- Try to restore the contents of the commit
- Commits are not sorted by date
Usage
where
- /tmp/mygitrepo contains a .git directory
- /tmp/mygitrepodump is the destination directory
This can be used in combination with the Git Dumper in case the downloaded repository is incomplete.
Demo
Copyright >=2015 Sebastian Neef