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.
* 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

View file

@ -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