Find email id of any github user.

Hi all,

Recently, while browsing github, I wanted to find email id of a github user and imagined if there is a possible way to find this person as I am interested in learning more about the work on his github account and would like to contribute to the same.

Luckily I found that the github api is very insecure and presents the email id of a github user with ease.

So, here's a script that will help you determine email id of any github user.
============================================
#The script for finding email address of any user.

function _md5()
{
  if which md5sum > /dev/null; then
    echo -n $1 | md5sum | cut -d " " -f1
  else
    md5 -q -s $1
  fi
}

USAGE="$(basename "$0") [-e] [-g] user -- Find the email address of any GitHub user
Where:
    -h, --help Help: display this help message
    -e Event log: show all emails that appear in the user's event log
    -g Gravatar match: attempt to match an event email to the user's Gravatar ID"

if [ "$1" == "-h" ] || [ "$1" == "--help" ] || [ -z "$1" ] ; then
  echo "$USAGE"
  exit
fi

if [ "$1" == "-e" ] || [ "$1" == "-g" ] ; then
  if [ -z "$2" ] ; then
    echo "$USAGE"
    exit
  fi

  USER=$2
  EVENTRESPONSE=`curl -s https://api.github.com/users/$USER/events/public`
  EMAILS=`echo "$EVENTRESPONSE" | grep "\"email\":" | sed -e's/[,|"]//g' | sort | uniq -c | sort -n | awk '{print $(NF)}' | grep -v null`
 
  if [ "$1" == "-g" ] ; then
    PROFILERESPONSE=`curl -s https://api.github.com/users/$USER`
    GID=`echo "$PROFILERESPONSE" | grep "\"gravatar_id\":" | sed -e's/[,|"]//g' | awk '{print $(NF)}'`
    for EMAIL in $EMAILS ; do
      if [ $GID == `_md5 $EMAIL` ] ; then
        echo "$EMAIL"
      fi
    done
  else
    if [ -n "$EMAILS" ] ; then
      echo "$EMAILS"
    fi
  fi
  exit
fi

USER=$1
PROFILERESPONSE=`curl -s https://api.github.com/users/$USER`
EMAIL=`echo "$PROFILERESPONSE" | grep "\"email\":" | sed -e's/[,|"]//g' | awk '{print $(NF)}' | grep -v null`

if [ -z "$EMAIL" ] ; then
  EVENTRESPONSE=`curl -s https://api.github.com/users/$USER/events/public`
  EMAIL=`echo "$EVENTRESPONSE" | grep "\"email\":" | sed -e's/[,|"]//g' | sort | uniq -c | sort -n | awk '{print $(NF)}' | grep -v null | tail -n1`
fi

if [ -n "$EMAIL" ] ; then
  echo "$EMAIL"
  exit
fi

exit 1

===============================================

Save the above script in a bash file or download it here : -  Find_github_email.sh

Usage: bash <script_name.sh> <User_id>

Comments

Popular posts from this blog

SOX - Sound eXchange - How to use SOX for audio processing tasks in research.

Sox of Silence - Original post - http://digitalcardboard.com/blog/2009/08/25/the-sox-of-silence/

How to get video or audio duration of a file using ffmpeg?