SearchSploit v3.3 - Adds '-p' for copying path

This commit is contained in:
g0tmi1k 2016-03-19 09:53:07 +00:00
parent 9623dcc662
commit fc03ae3188
2 changed files with 41 additions and 22 deletions

View file

@ -38,7 +38,7 @@ Example:
* Use '-c' if you wish to reduce results by case-sensitive searching. * 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. * 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. * 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. * When updating from git or displaying help, search terms will be ignored.
root@kali:~# searchsploit afd windows local root@kali:~# searchsploit afd windows local

View file

@ -1,12 +1,13 @@
#!/bin/bash #!/bin/bash
# Name: SearchSploit - Exploit-DB's CLI search tool # 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 # Written by: Offensive Security, Unix-Ninja & g0tmi1k
# Homepage: https://github.com/offensive-security/exploit-database # Homepage: https://github.com/offensive-security/exploit-database
# #
## NOTE: ## NOTE:
# Exit code '0' means finished normally # 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 # 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 files.csv is in the searchsploit path, use that instead
if [[ -f "$( dirname "$0" )/files.csv" ]]; then if [[ -f "$( dirname "$0" )/files.csv" ]]; then
csvpath="$( dirname "$0" )/files.csv" gitpath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
csvpath="${gitpath}/files.csv"
fi fi
@ -76,12 +78,13 @@ function usage()
echo " * Use '-c' if you wish to reduce results by case-sensitive searching." 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 " * 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 " * 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 " * When updating from git or displaying help, search terms will be ignored."
echo "" echo ""
exit 1 exit 2
} }
## Update database (via GIT) ## Update database (via GIT)
function update() function update()
{ {
@ -189,27 +192,43 @@ done
## Print the full path. If pbcopy/xclip is available then copy to the clipboard ## Print the full path. If pbcopy/xclip is available then copy to the clipboard
if [[ "${GETPATH}" -eq '1' ]]; then 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:]')" ## Did we find the exploit?
edbid=$(echo "${tag}" | tr -dc '0-9') if [[ -f "${location}" ]]; then
edbpath=$(awk -F ',' '{print $2}' ${csvpath} | grep -E "/${edbid}(\..*)?$") ## Display out
location="${gitpath}/${edbpath}" 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
# Are any copy programs available? ## Linux
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
if hash xclip 2>/dev/null; then echo "Copied exploit path to the clipboard."
echo -ne "${location}" | xclip -selection clipboard ## OSX
else elif hash pbcopy 2>/dev/null; then
echo -ne "${location}" | pbcopy echo -ne "${location}" | pbcopy
echo "Copied exploit path to the clipboard."
fi
fi fi
echo "Location has been copied to the clipboard." ## Done
fi exit 0
else
## Feedback
echo "Could not find exploit ${edbdb}"
exit 0 ## Quit
exit 1
fi
fi fi