Merge branch 'leonjza-searchsploit'

This commit is contained in:
Offensive Security 2016-03-19 09:36:25 +00:00
commit 9623dcc662
2 changed files with 33 additions and 1 deletions

View file

@ -23,6 +23,7 @@ Example:
-e, --exact Perform an EXACT match on exploit title (Default is AND) [Implies "-t"].
-h, --help Show this help screen.
-o, --overflow Exploit title's are allowed to overflow their columns.
-p, --path Show the full path to an exploit (Copies path to clipboard if possible).
-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.

View file

@ -25,6 +25,7 @@ COLOUR=1
EDBID=0
EXACT=0
FILEPATH=1
GETPATH=0
OVERFLOW=0
WEBLINK=0
SCASE=0
@ -60,6 +61,7 @@ function usage()
echo " -e, --exact Perform an EXACT match on exploit title (Default is AND) [Implies \"-t\"]."
echo " -h, --help Show this help screen."
echo " -o, --overflow Exploit title's are allowed to overflow their columns."
echo " -p, --path Show the full path to an exploit (Copies path to clipboard if possible)."
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."
@ -143,6 +145,8 @@ for param in "$@"; do
usage >&2
elif [[ "${param}" == "--overflow" ]]; then
OVERFLOW=1
elif [[ "${param}" == "--path" ]]; then
GETPATH=1
elif [[ "${param}" == "--title" ]]; then
FILEPATH=0
elif [[ "${param}" == "--update" ]]; then
@ -165,7 +169,7 @@ done
## Parse short arguments
while getopts "cehotuw" arg "${ARGS}"; do
while getopts "cehoptuw" arg "${ARGS}"; do
if [[ "${arg}" = "?" ]]; then
usage >&2;
fi
@ -174,6 +178,7 @@ while getopts "cehotuw" arg "${ARGS}"; do
e) EXACT=1;;
h) usage >&2;;
o) OVERFLOW=1;;
p) GETPATH=1;;
t) FILEPATH=0;;
u) update;;
w) WEBLINK=1;;
@ -182,6 +187,32 @@ while getopts "cehotuw" arg "${ARGS}"; do
done
## Print the full path. If pbcopy/xclip is available then copy to the clipboard
if [[ "${GETPATH}" -eq '1' ]]; then
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}"
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
fi
echo "Location has been copied to the clipboard."
fi
exit 0
fi
## If we are doing an exact match, do not check folder path.
if [[ "${EXACT}" -eq 1 ]]; then
FILEPATH=0