From fc03ae31882a41938413993a5222890561c7e38c Mon Sep 17 00:00:00 2001 From: g0tmi1k Date: Sat, 19 Mar 2016 09:53:07 +0000 Subject: [PATCH] SearchSploit v3.3 - Adds '-p' for copying path --- README.md | 2 +- searchsploit | 61 ++++++++++++++++++++++++++++++++++------------------ 2 files changed, 41 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 69af19a39..2e415f129 100755 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Example: * Use '-c' if you wish to reduce results by case-sensitive searching. * And/Or '-e' if you wish to filter results by using an exact match. * Use '-t' to exclude the file's path to filter the search results. - * Remove false positives (especially when searching numbers/versions). + * Remove false positives (especially when searching numbers/major versions). * When updating from git or displaying help, search terms will be ignored. root@kali:~# searchsploit afd windows local diff --git a/searchsploit b/searchsploit index 386f380ce..c4ee29507 100755 --- a/searchsploit +++ b/searchsploit @@ -1,12 +1,13 @@ #!/bin/bash # Name: SearchSploit - Exploit-DB's CLI search tool -# Version: 3.2 (Release date: 2016-03-18) +# Version: 3.3 (Release date: 2016-03-19) # Written by: Offensive Security, Unix-Ninja & g0tmi1k # Homepage: https://github.com/offensive-security/exploit-database # ## NOTE: # Exit code '0' means finished normally -# Exit code '1' means finished help screen +# Exit code '1' means something went wrong +# Exit code '2' means finished help screen # Exit code '6' means updated from GitHub @@ -42,7 +43,8 @@ LANG=C ## If files.csv is in the searchsploit path, use that instead if [[ -f "$( dirname "$0" )/files.csv" ]]; then - csvpath="$( dirname "$0" )/files.csv" + gitpath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + csvpath="${gitpath}/files.csv" fi @@ -76,12 +78,13 @@ function usage() echo " * Use '-c' if you wish to reduce results by case-sensitive searching." echo " * And/Or '-e' if you wish to filter results by using an exact match." echo " * Use '-t' to exclude the file's path to filter the search results." - echo " * Remove false positives (especially when searching numbers/versions)." + echo " * Remove false positives (especially when searching numbers/major versions)." echo " * When updating from git or displaying help, search terms will be ignored." echo "" - exit 1 + exit 2 } + ## Update database (via GIT) function update() { @@ -189,27 +192,43 @@ done ## Print the full path. If pbcopy/xclip is available then copy to the clipboard if [[ "${GETPATH}" -eq '1' ]]; then + ## Get EDB-ID from input + edbdb="$( echo ${TAGS} | tr -dc '0-9' )" + ## Check files.csv + location=$(cut -d, -f2 "${csvpath}" | grep -m 1 -E "/${edbdb}(\..*)?$") + title=$(grep -m 1 "${location}" "${csvpath}" | cut -d, -f3) + ## Join paths + location="${gitpath}/${location}" - tag="$(echo ${TAGS} | tr '[:upper:]' '[:lower:]')" - edbid=$(echo "${tag}" | tr -dc '0-9') - edbpath=$(awk -F ',' '{print $2}' ${csvpath} | grep -E "/${edbid}(\..*)?$") - location="${gitpath}/${edbpath}" + ## Did we find the exploit? + if [[ -f "${location}" ]]; then + ## Display out + echo " EDB-ID: ${title}" + echo "Exploit: ${location}" + echo "" - echo "The exploit should be at: ${location}" - - # Are any copy programs available? - if hash xclip 2>/dev/null || hash pbcopy 2>/dev/null; then - - if hash xclip 2>/dev/null; then - echo -ne "${location}" | xclip -selection clipboard - else - echo -ne "${location}" | pbcopy + ## Are any copy programs available? + if hash xclip 2>/dev/null || hash pbcopy 2>/dev/null; then + ## Linux + if hash xclip 2>/dev/null; then + echo -ne "${location}" | xclip -selection clipboard + echo "Copied exploit path to the clipboard." + ## OSX + elif hash pbcopy 2>/dev/null; then + echo -ne "${location}" | pbcopy + echo "Copied exploit path to the clipboard." + fi fi - echo "Location has been copied to the clipboard." - fi + ## Done + exit 0 + else + ## Feedback + echo "Could not find exploit ${edbdb}" - exit 0 + ## Quit + exit 1 + fi fi