diff --git a/searchsploit b/searchsploit index 5ab6c3e0c..a18dff7eb 100755 --- a/searchsploit +++ b/searchsploit @@ -1,6 +1,6 @@ #!/bin/bash # Name: SearchSploit - Exploit-DB's CLI search tool -# Version: 4.0.4 (2019-02-18) +# Version: 4.0.5 (2019-03-27) # Written by: Offensive Security, Unix-Ninja, and g0tmi1k # Homepage: https://github.com/offensive-security/exploitdb # Manual: https://www.exploit-db.com/searchsploit @@ -427,7 +427,14 @@ function findresults() file_in="${1}" path_in="${2}" name_in="${3}" - [[ "${name_in}" == "Paper"* ]] && url="papers" || url="exploits" + + if [[ "${name_in}" == "Paper"* ]]; then + url="papers" + elif [[ "${name_in}" == "Shellcode"* ]]; then + url="shellcodes" + else + url="exploits" + fi ## JSON require full options @@ -758,13 +765,23 @@ if [[ "${GETPATH}" -eq 1 ]]; then arraylength="${#files_array[@]}" for (( i=0; i<${arraylength}; i++ )); do files="${path_array[${i}]}/${files_array[${i}]}" + ## Check to see if the files_*.csv has a value line=$( grep -m 1 -E "^${edbdb}," "${files}" ) + if [[ "${line}" ]]; then path="$( echo $line | cut -d ',' -f 2 )" location="${path_array[${i}]}/${path}" name="${name_array[${i}]}" - [[ "${name}" == "Paper"* ]] && url="papers/${edbdb}/" || url="exploits/${edbdb}/" + + if [[ "${name}" == "Paper"* ]]; then + url="papers/${edbdb}" + elif [[ "${name}" == "Shellcode"* ]]; then + url="shellcodes/${edbdb}" + else + url="exploits/${edbdb}" + fi + break fi done