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
|
#!/bin/bash
|
||||||
# Name: SearchSploit - Exploit-DB's CLI search tool
|
# 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
|
# Written by: Offensive Security, Unix-Ninja, and g0tmi1k
|
||||||
# Homepage: https://github.com/offensive-security/exploitdb
|
# Homepage: https://github.com/offensive-security/exploitdb
|
||||||
# Manual: https://www.exploit-db.com/searchsploit
|
# Manual: https://www.exploit-db.com/searchsploit
|
||||||
|
@ -427,7 +427,14 @@ function findresults()
|
||||||
file_in="${1}"
|
file_in="${1}"
|
||||||
path_in="${2}"
|
path_in="${2}"
|
||||||
name_in="${3}"
|
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
|
## JSON require full options
|
||||||
|
@ -758,13 +765,23 @@ if [[ "${GETPATH}" -eq 1 ]]; then
|
||||||
arraylength="${#files_array[@]}"
|
arraylength="${#files_array[@]}"
|
||||||
for (( i=0; i<${arraylength}; i++ )); do
|
for (( i=0; i<${arraylength}; i++ )); do
|
||||||
files="${path_array[${i}]}/${files_array[${i}]}"
|
files="${path_array[${i}]}/${files_array[${i}]}"
|
||||||
|
|
||||||
## Check to see if the files_*.csv has a value
|
## Check to see if the files_*.csv has a value
|
||||||
line=$( grep -m 1 -E "^${edbdb}," "${files}" )
|
line=$( grep -m 1 -E "^${edbdb}," "${files}" )
|
||||||
|
|
||||||
if [[ "${line}" ]]; then
|
if [[ "${line}" ]]; then
|
||||||
path="$( echo $line | cut -d ',' -f 2 )"
|
path="$( echo $line | cut -d ',' -f 2 )"
|
||||||
location="${path_array[${i}]}/${path}"
|
location="${path_array[${i}]}/${path}"
|
||||||
name="${name_array[${i}]}"
|
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
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue