Add shellcode support for any URLs
This commit is contained in:
parent
997deeda21
commit
8135e1a38f
1 changed files with 20 additions and 3 deletions
23
searchsploit
23
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
|
||||
|
|
Loading…
Add table
Reference in a new issue