diff --git a/searchsploit b/searchsploit index f03aea285..f592f1112 100755 --- a/searchsploit +++ b/searchsploit @@ -406,6 +406,9 @@ else SEARCH="${SEARCH}/ && ${CASE_TAG_FGREP}(\$1) ~ /" fi + ## Escape any slashes + tag="$( echo ${tag} | sed 's_/_\\/_g' )" + ## Case sensitive? if [[ "${SCASE}" -eq 1 ]]; then SEARCH="${SEARCH}${tag}"