diff --git a/README.md b/README.md index 2e415f129..6f1ff780f 100755 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ Example: -t, --title Search just the exploit title (Default is title AND the file's path). -u, --update Update exploit database from git. -w, --www Show URLs to Exploit-DB.com rather than local path. - --id Display EDB-ID value rather than local path. --colour Disable colour highlighting. + --id Display EDB-ID value rather than local path. ======= Notes diff --git a/searchsploit b/searchsploit index 16ba29fc7..3b3e6d397 100755 --- a/searchsploit +++ b/searchsploit @@ -1,6 +1,6 @@ #!/bin/bash # Name: SearchSploit - Exploit-DB's CLI search tool -# Version: 3.3 (Release date: 2016-03-19) +# Version: 3.3 (Release date: 2016-04-02) # Written by: Offensive Security, Unix-Ninja & g0tmi1k # Homepage: https://github.com/offensive-security/exploit-database # @@ -67,8 +67,8 @@ function usage() echo " -t, --title Search just the exploit title (Default is title AND the file's path)." echo " -u, --update Update exploit database from git." echo " -w, --www Show URLs to Exploit-DB.com rather than local path." - echo " --id Display EDB-ID value rather than local path." echo " --colour Disable colour highlighting." + echo " --id Display EDB-ID value rather than local path." echo echo "=======" echo " Notes " @@ -92,18 +92,22 @@ function update() mkdir -p "${gitpath}/" cd "${gitpath}/" - ## Make sure a git repo is init before updating + ## Are we in a git repo? if [[ "$( git rev-parse --is-inside-work-tree )" != "true" ]]; then if [[ "$( ls )" = "" ]]; then # If directory is empty, just clone - git clone --depth=1 "${gitremote}" . - else - # If not empty, init and add remote - git init >/dev/null - git remote add origin "${gitremote}" + echo -e '\n[i] Nothing here. Starting fresh...' + git clone "${gitremote}" . fi fi + # Is our git remote added? (aka homebrew) + if [[ "$( git remote -v )" != *"${gitremote}"* ]]; then + echo -e '\n[i] Missing git remote:' "${gitremote}" + git init >/dev/null + git remote add origin "${gitremote}" 2>/dev/null + fi + # Make sure to prep checkout first git checkout -- . @@ -116,7 +120,7 @@ function update() git pull origin master fi - echo "[*] Update finished." + echo -e "\n[*] Update finished." exit 6 }