added case-sensitive toggle switch & cleaned up garbage results (still super-fast)

This commit is contained in:
Unix-Ninja 2014-03-06 14:06:24 -05:00
parent 58e6a9f5be
commit be4f53e1a8

View file

@ -5,59 +5,89 @@
csvpath=/usr/share/exploitdb/files.csv csvpath=/usr/share/exploitdb/files.csv
progname=`basename $0` progname=`basename $0`
TAGS=
SCASE='-i'
VERBOSE=0 VERBOSE=0
# if files.csv is in the searchsploit path, use that # if files.csv is in the searchsploit path, use that
if [ -f "$( dirname $0 )/files.csv" ]; then if [ -f "$( dirname $0 )/files.csv" ]; then
csvpath="$( dirname $0 )/files.csv" csvpath="$( dirname $0 )/files.csv"
fi fi
# usage info # usage info
function usage() function usage()
{ {
echo "Usage: $progname [options] term1 [term2] ... [termN]" echo "Usage: $progname [options] term1 [term2] ... [termN]"
echo "Example: $progname oracle windows local" echo "Example: $progname oracle windows local"
echo echo
echo "=======" echo "======="
echo "Options" echo "Options"
echo "=======" echo "======="
echo echo
echo " -h, --help Show help screen" echo " -c Perform case-sensitive searches; by default, searches will"
echo " -v By setting verbose output, description lines are allowed to" echo " try to be greedy"
echo " overflow their columns" echo " -h, --help Show help screen"
echo echo " -v By setting verbose output, description lines are allowed to"
echo "*NOTES*" echo " overflow their columns"
echo "Use any number of search terms you would like (minimum of one)." echo
echo "Search terms are not case sensitive, and order is irrelevant." echo "*NOTES*"
exit 1 echo "Use any number of search terms you would like (minimum of one)."
echo "Search terms are not case sensitive, and order is irrelevant."
exit 1
} }
if [ $# -eq 0 -o "$1" == "-h" -o "$1" == "--help" ]; then
usage >&2
fi
# dynamically set column widths # dynamically set column widths
COL2=35 COL2=35
COL1=$(( `tput cols` - $COL2 - 1 )) COL1=$(( `tput cols` - $COL2 - 1 ))
if [ "$1" == "-v" ]; then # check for empty args
VERBOSE=1 if [ $# -eq 0 ]; then
shift usage >&2
fi fi
# parse long arguments
ARGS="-"
for param in $@; do
if [ "$param" == "--help" ]; then
usage >&2
else
if [ "${param:0:1}" == "-" ]; then
ARGS=$ARGS${param:1}
shift
continue
fi
TAGS="$TAGS $param"
fi
done
# parse short arguments
while getopts "chv" arg $ARGS; do
if [ "$arg" = "?" ]; then
usage >&2;
fi
case $arg in
c) SCASE='';;
h) usage >&2;;
v) VERBOSE=1;;
esac
shift $((OPTIND-1))
done
# print header # print header
printf "%-${COL1}s %s" " Description" printf "%-${COL1}s %s" " Description"
echo " Path" echo " Path"
printf "%0.s-" `eval echo {1..$(( $COL1 + 1 ))}` printf "%0.s-" `eval echo {1..$(( $COL1 + 1 ))}`
echo -n " " echo -n " "
printf "%0.s-" `eval echo {1..$(( $COL2 - 1 ))}` printf "%0.s-" `eval echo {1..$(( $COL2 - 1 ))}`
echo echo
# create search command # create search command
SEARCH="fgrep -i \"$1\" $csvpath" SEARCH=
shift for tag in $TAGS; do
while (( "$#" )); do if [ "$SEARCH" ]; then
SEARCH="$SEARCH | fgrep -i \"$1\"" SEARCH="$SEARCH |"
shift fi
SEARCH="$SEARCH fgrep $SCASE \"$tag\""
done done
# set LANG variable to avoid illegal byte sequence errors in sed # set LANG variable to avoid illegal byte sequence errors in sed
@ -65,12 +95,13 @@ LANG=C
# search, format, and print results # search, format, and print results
if [ "$VERBOSE" -eq 0 ]; then if [ "$VERBOSE" -eq 0 ]; then
eval $SEARCH \ FORMAT=$COL1'.'$COL1
| awk -F "\"*,\"*" '{ printf "%-'$COL1'.'$COL1's | %s\n", $3, $2}' \
| sed " s/| platforms/| /"
else else
eval $SEARCH \ FORMAT=$COL1
| awk -F "\"*,\"*" '{ printf "%-'$COL1's | %s\n", $3, $2}' \
| sed " s/| platforms/| /"
fi fi
cat $csvpath \
| eval $SEARCH \
| awk -F "\"*,\"*" '{ printf "%-'$FORMAT's | %s\n", $3, $2}' \
| sed " s/| platforms/| /" \
| eval $SEARCH
exit 0 exit 0