add json output support

remove json test fil

remove personnal repository

clean code

add json option to readme

add json output support
This commit is contained in:
Ben Mz 2016-08-06 19:26:52 +02:00
parent 75085bf1d7
commit df9d0bee72
2 changed files with 48 additions and 25 deletions

View file

@ -22,6 +22,7 @@ Example:
-c, --case Perform a case-sensitive search (Default is inSEnsITiVe). -c, --case Perform a case-sensitive search (Default is inSEnsITiVe).
-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.
-j, --json Show result in JSON format.
-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). -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).

View file

@ -27,6 +27,7 @@ EDBID=0
EXACT=0 EXACT=0
FILEPATH=1 FILEPATH=1
GETPATH=0 GETPATH=0
JSON=0
OVERFLOW=0 OVERFLOW=0
WEBLINK=0 WEBLINK=0
SCASE=0 SCASE=0
@ -62,6 +63,7 @@ function usage()
echo " -c, --case Perform a case-sensitive search (Default is inSEnsITiVe)." echo " -c, --case Perform a case-sensitive search (Default is inSEnsITiVe)."
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 " -j, --json Show result in JSON format."
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 " -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)."
@ -150,6 +152,8 @@ for param in "$@"; do
EXACT=1 EXACT=1
elif [[ "${param}" == "--help" ]]; then elif [[ "${param}" == "--help" ]]; then
usage >&2 usage >&2
elif [[ "${param}" == "--json" ]]; then
JSON=1
elif [[ "${param}" == "--overflow" ]]; then elif [[ "${param}" == "--overflow" ]]; then
OVERFLOW=1 OVERFLOW=1
elif [[ "${param}" == "--path" ]]; then elif [[ "${param}" == "--path" ]]; then
@ -176,7 +180,7 @@ done
## Parse short arguments ## Parse short arguments
while getopts "cehoptuw" arg "${ARGS}"; do while getopts "cehjoptuw" arg "${ARGS}"; do
if [[ "${arg}" = "?" ]]; then if [[ "${arg}" = "?" ]]; then
usage >&2; usage >&2;
fi fi
@ -184,6 +188,7 @@ while getopts "cehoptuw" arg "${ARGS}"; do
c) SCASE=1;; c) SCASE=1;;
e) EXACT=1;; e) EXACT=1;;
h) usage >&2;; h) usage >&2;;
j) JSON=1;;
o) OVERFLOW=1;; o) OVERFLOW=1;;
p) GETPATH=1;; p) GETPATH=1;;
t) FILEPATH=0;; t) FILEPATH=0;;
@ -258,20 +263,29 @@ else
fi fi
COL1=$(( $( tput cols ) - COL2 - 1 )) COL1=$(( $( tput cols ) - COL2 - 1 ))
## Remove leading space
TAGS="$(echo ${TAGS} | sed -e 's/^[[:space:]]//')"
## Print header ## Print header if not in JSON
drawline if [[ "${JSON}" -eq 0 ]]; then
printf "%-${COL1}s %s" " Exploit Title" drawline
if [[ "${WEBLINK}" -eq 1 ]]; then printf "%-${COL1}s %s" " Exploit Title"
echo "| URL" if [[ "${WEBLINK}" -eq 1 ]]; then
elif [[ "${EDBID}" -eq 1 ]]; then echo "| URL"
echo "| EDB-ID" elif [[ "${EDBID}" -eq 1 ]]; then
echo "| EDB-ID"
else
echo "| Path"
printf "%-${COL1}s "
echo "| (${gitpath}/platforms)"
fi
drawline
## Print JSON header
else else
echo "| Path" echo "{"
printf "%-${COL1}s " echo " \"SEARCH\": \"${TAGS}\","
echo "| (${gitpath}/platforms)" echo " \"RESULTS\": ["
fi fi
drawline
## EXACT search command? ## EXACT search command?
@ -283,9 +297,6 @@ if [[ "${EXACT}" -eq 1 ]]; then
SEARCH="$( echo ${TAGS} | tr '[:upper:]' '[:lower:]' )" SEARCH="$( echo ${TAGS} | tr '[:upper:]' '[:lower:]' )"
fi fi
## Remove leading space
SEARCH="$(echo ${SEARCH} | sed -e 's/^[[:space:]]//')"
## If we are to use colour, add the values to search for ## If we are to use colour, add the values to search for
if [[ "${COLOUR}" -eq 1 ]]; then if [[ "${COLOUR}" -eq 1 ]]; then
COLOUR_TAG="${SEARCH}" COLOUR_TAG="${SEARCH}"
@ -336,7 +347,7 @@ fi
## If we are to use colour, add the value here ## If we are to use colour, add the value here
if [[ "${COLOUR_TAG}" ]]; then if [[ "${COLOUR_TAG}" ]] && [[ "${JSON}" -eq 0 ]]; then
SEARCH="${SEARCH} | grep --color=always -ie \"\${COLOUR_TAG}\"" SEARCH="${SEARCH} | grep --color=always -ie \"\${COLOUR_TAG}\""
fi fi
@ -352,23 +363,34 @@ fi
## Magic search Fu ## Magic search Fu
## Web link format? ## Web link format?
if [[ "${WEBLINK}" -eq 1 ]]; then if [[ "${WEBLINK}" -eq 1 ]]; then
awk -F "\"*,\"*" '{ printf "%-'${FORMAT}'s | %s\n", $3, "https://www.exploit-db.com/exploits/"$1"/"}' "${csvpath}" \ OUTPUT="$(awk -F "\"*,\"*" '{ printf "%-'${FORMAT}'s | %s\n", $3, "https://www.exploit-db.com/exploits/"$1"/"}' "${csvpath}" \
| eval "${SEARCH}" | eval "${SEARCH}")"
## Just the EDB-ID? ## Just the EDB-ID?
elif [[ "${EDBID}" -eq 1 ]]; then elif [[ "${EDBID}" -eq 1 ]]; then
awk -F "\"*,\"*" '{ printf "%-'${FORMAT}'s | %s\n", $3, $1}' "${csvpath}" \ OUTPUT="$(awk -F "\"*,\"*" '{ printf "%-'${FORMAT}'s | %s\n", $3, $1}' "${csvpath}" \
| eval "${SEARCH}" | eval "${SEARCH}" )"
## Print JSON format (full options)
elif [[ "${JSON}" -eq 1 ]]; then
OUTPUT="$(awk -F "\"*,\"*" '{ printf "\r\t\t'{'\"Exploit\":\"%s\",\"Path\":\"'${gitpath}/'%s\",\"EDB-ID\":%s},\n", $3, $2, $1}' "${csvpath}" \
| eval "${SEARCH}" \
| sed '$ s/,$//g' )"
## Default view ## Default view
else else
awk -F "\"*,\"*" '{ printf "%-'${FORMAT}'s | %s\n", $3, $2}' "${csvpath}" \ OUTPUT=$OUTPUT"$(awk -F "\"*,\"*" '{ printf "%-'${FORMAT}'s | %s\n", $3, $2}' "${csvpath}" \
| eval "${SEARCH}" \ | eval "${SEARCH}" \
| sed "s/| platforms/| ./" | sed "s/| platforms/| ./" )"
fi fi
echo $OUTPUT
## Print footer ## Print footer if not in JSON
drawline if [[ "${JSON}" -eq 0 ]]; then
drawline
## Print JSON footer
else
echo " ]"
echo "}"
fi
## Done ## Done
exit 0 exit 0