searchsploit -u // Works better with Homebrew (add remote git repo)

This commit is contained in:
g0tmi1k 2016-04-03 14:28:35 +01:00
parent 6290e0021e
commit a26695ae60
2 changed files with 14 additions and 10 deletions

View file

@ -27,8 +27,8 @@ Example:
-t, --title Search just the exploit title (Default is title AND the file's path). -t, --title Search just the exploit title (Default is title AND the file's path).
-u, --update Update exploit database from git. -u, --update Update exploit database from git.
-w, --www Show URLs to Exploit-DB.com rather than local path. -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. --colour Disable colour highlighting.
--id Display EDB-ID value rather than local path.
======= =======
Notes Notes

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# Name: SearchSploit - Exploit-DB's CLI search tool # 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 # Written by: Offensive Security, Unix-Ninja & g0tmi1k
# Homepage: https://github.com/offensive-security/exploit-database # 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 " -t, --title Search just the exploit title (Default is title AND the file's path)."
echo " -u, --update Update exploit database from git." echo " -u, --update Update exploit database from git."
echo " -w, --www Show URLs to Exploit-DB.com rather than local path." 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 " --colour Disable colour highlighting."
echo " --id Display EDB-ID value rather than local path."
echo echo
echo "=======" echo "======="
echo " Notes " echo " Notes "
@ -92,18 +92,22 @@ function update()
mkdir -p "${gitpath}/" mkdir -p "${gitpath}/"
cd "${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 [[ "$( git rev-parse --is-inside-work-tree )" != "true" ]]; then
if [[ "$( ls )" = "" ]]; then if [[ "$( ls )" = "" ]]; then
# If directory is empty, just clone # If directory is empty, just clone
git clone --depth=1 "${gitremote}" . echo -e '\n[i] Nothing here. Starting fresh...'
else git clone "${gitremote}" .
# If not empty, init and add remote
git init >/dev/null
git remote add origin "${gitremote}"
fi fi
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 # Make sure to prep checkout first
git checkout -- . git checkout -- .
@ -116,7 +120,7 @@ function update()
git pull origin master git pull origin master
fi fi
echo "[*] Update finished." echo -e "\n[*] Update finished."
exit 6 exit 6
} }