diff --git a/searchsploit b/searchsploit index dc7093693..9278844e9 100755 --- a/searchsploit +++ b/searchsploit @@ -545,8 +545,7 @@ function findresults() { RESULT="$( printf '%s\n' "${MIN}" "${VERSION}" "${MAX}" | sort -V )" ## Sub if sort -v isn't working? if (( $( echo "${MIN} <= ${VERSION}" | bc -l ) )) && (( $( echo "${MAX} >= ${VERSION}" | bc -l ) )); then ## ...else there is dpkg (if Debian) - if [[ "$( echo "${RESULT}" | head -n 1 )" == "${MIN}" ]] \ - && [[ "$( echo "${RESULT}" | tail -n 1 )" == "${MAX}" ]]; then + if [[ "$( echo "${RESULT}" | head -n 1 )" == "${MIN}" ]] && [[ "$( echo "${RESULT}" | tail -n 1 )" == "${MAX}" ]]; then [ -n "${ID}" ] \ && ID="${ID}|" ID="${ID}$( echo ${TITLE} | awk -F ',' '{print $1}' )"