From 142f38c2791d3716f9b45b3ac2121fb3243e2734 Mon Sep 17 00:00:00 2001 From: g0tmi1k Date: Thu, 10 Nov 2022 23:56:16 +0000 Subject: [PATCH] Fix Incorrect processing of -t (GitHub 190) https://github.com/offensive-security/exploitdb/issues/190 --- searchsploit | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/searchsploit b/searchsploit index 3d42e7d42..a447826d2 100755 --- a/searchsploit +++ b/searchsploit @@ -427,17 +427,18 @@ function buildterms() { COLOUR_TAG="${COLOUR_TAG}${tag_in}" fi + ## Some regex to try and detect version + ## Basic: major.minor[.build][.revision] // major.minor[.maintenance][.build] -- example: 1.2.3.4) + ## Plus alphanumeric (e.g. alpha, beta): 1a, 2.2b, 3.3-c, 4.4-rc4, 5.5-r + if ! echo "${tag_in}" | grep ${REGEX_GREP} -q "^(\d+)(\.?\d*)(\.?\d*)((\.|\-)?(\w*))$"; then + FUZZY_SEARCH="${FUZZY_SEARCH} | grep ${COLOUR_OFF_GREP} -F ${CASE_TAG_GREP} \"${tag_in}\"" + fi + ## Search both title AND path if [[ "${FILEPATH}" -eq 1 ]]; then ## Search command for each term (with case sensitive flag, "-c") SEARCH="${SEARCH} | grep ${COLOUR_OFF_GREP} -F ${CASE_TAG_GREP} \"${tag_in}\"" - ## Some regex to try and detect version - ## Basic: major.minor[.build][.revision] // major.minor[.maintenance][.build] -- example: 1.2.3.4) - ## Plus alphanumeric (e.g. alpha, beta): 1a, 2.2b, 3.3-c, 4.4-rc4, 5.5-r - if ! echo "${tag_in}" | grep ${REGEX_GREP} -q "^(\d+)(\.?\d*)(\.?\d*)((\.|\-)?(\w*))$"; then - FUZZY_SEARCH="${FUZZY_SEARCH} | grep ${COLOUR_OFF_GREP} -F ${CASE_TAG_GREP} \"${tag_in}\"" - fi ## Search just the title, NOT the path ("-t"/"-e") else ## If there is already a value, prepend text to get ready