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,6 +5,8 @@
csvpath=/usr/share/exploitdb/files.csv
progname=`basename $0`
TAGS=
SCASE='-i'
VERBOSE=0
# if files.csv is in the searchsploit path, use that
@ -22,6 +24,8 @@ function usage()
echo "Options"
echo "======="
echo
echo " -c Perform case-sensitive searches; by default, searches will"
echo " try to be greedy"
echo " -h, --help Show help screen"
echo " -v By setting verbose output, description lines are allowed to"
echo " overflow their columns"
@ -31,19 +35,44 @@ function usage()
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
COL2=35
COL1=$(( `tput cols` - $COL2 - 1 ))
if [ "$1" == "-v" ]; then
VERBOSE=1
shift
# check for empty args
if [ $# -eq 0 ]; then
usage >&2
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
printf "%-${COL1}s %s" " Description"
echo " Path"
@ -53,11 +82,12 @@ printf "%0.s-" `eval echo {1..$(( $COL2 - 1 ))}`
echo
# create search command
SEARCH="fgrep -i \"$1\" $csvpath"
shift
while (( "$#" )); do
SEARCH="$SEARCH | fgrep -i \"$1\""
shift
SEARCH=
for tag in $TAGS; do
if [ "$SEARCH" ]; then
SEARCH="$SEARCH |"
fi
SEARCH="$SEARCH fgrep $SCASE \"$tag\""
done
# set LANG variable to avoid illegal byte sequence errors in sed
@ -65,12 +95,13 @@ LANG=C
# search, format, and print results
if [ "$VERBOSE" -eq 0 ]; then
eval $SEARCH \
| awk -F "\"*,\"*" '{ printf "%-'$COL1'.'$COL1's | %s\n", $3, $2}' \
| sed " s/| platforms/| /"
FORMAT=$COL1'.'$COL1
else
eval $SEARCH \
| awk -F "\"*,\"*" '{ printf "%-'$COL1's | %s\n", $3, $2}' \
| sed " s/| platforms/| /"
FORMAT=$COL1
fi
cat $csvpath \
| eval $SEARCH \
| awk -F "\"*,\"*" '{ printf "%-'$FORMAT's | %s\n", $3, $2}' \
| sed " s/| platforms/| /" \
| eval $SEARCH
exit 0