Add -p parameter to get full exploit paths and copy to clipboard

This commit is contained in:
Leon Jacobs 2016-03-18 21:17:43 +02:00
parent 2af7b4dfb6
commit 0eb0e396ae
2 changed files with 30 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"]. -e, --exact Perform an EXACT match on exploit title (Default is AND) [Implies "-t"].
-h, --help Show this help screen. -h, --help Show this help screen.
-o, --overflow Exploit title's are allowed to overflow their columns. -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). -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.

View file

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