New site, new URLs
This commit is contained in:
parent
fc524deb37
commit
2c2d1d2da8
1 changed files with 5 additions and 5 deletions
10
searchsploit
10
searchsploit
|
@ -1,9 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Name: SearchSploit - Exploit-DB's CLI search tool
|
# Name: SearchSploit - Exploit-DB's CLI search tool
|
||||||
# Version: 4.0.3 (2018-09-24)
|
# Version: 4.0.4 (2019-02-18)
|
||||||
# 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
|
||||||
#
|
#
|
||||||
## NOTE:
|
## NOTE:
|
||||||
# Exit code '0' means finished normally
|
# Exit code '0' means finished normally
|
||||||
|
@ -68,7 +68,7 @@ function usage()
|
||||||
echo " ${progname} linux kernel 3.2 --exclude=\"(PoC)|/dos/\""
|
echo " ${progname} linux kernel 3.2 --exclude=\"(PoC)|/dos/\""
|
||||||
echo " ${progname} linux reverse password"
|
echo " ${progname} linux reverse password"
|
||||||
echo ""
|
echo ""
|
||||||
echo " For more examples, see the manual: https://www.exploit-db.com/searchsploit/"
|
echo " For more examples, see the manual: https://www.exploit-db.com/searchsploit"
|
||||||
echo ""
|
echo ""
|
||||||
echo "========="
|
echo "========="
|
||||||
echo " Options "
|
echo " Options "
|
||||||
|
@ -491,7 +491,7 @@ function findresults()
|
||||||
## Web link format ("--json --www")?
|
## Web link format ("--json --www")?
|
||||||
if [[ "${WEBLINK}" -eq 1 ]]; then
|
if [[ "${WEBLINK}" -eq 1 ]]; then
|
||||||
OUTPUT="$( eval ${SEARCH} \
|
OUTPUT="$( eval ${SEARCH} \
|
||||||
| awk -F ',' '{ printf "\\n\\t\\t'{'\"Title\":\"%s\",\"URL\":\"https://www.exploit-db.com/'${url}'/%s/\"},", $3, $1 }' )"
|
| awk -F ',' '{ printf "\\n\\t\\t'{'\"Title\":\"%s\",\"URL\":\"https://www.exploit-db.com/'${url}'/%s\"},", $3, $1 }' )"
|
||||||
## Just the EDB-ID ("--json --id")?
|
## Just the EDB-ID ("--json --id")?
|
||||||
elif [[ "${EDBID}" -eq 1 ]]; then
|
elif [[ "${EDBID}" -eq 1 ]]; then
|
||||||
OUTPUT="$( eval ${SEARCH} \
|
OUTPUT="$( eval ${SEARCH} \
|
||||||
|
@ -507,7 +507,7 @@ function findresults()
|
||||||
## Web link format ("--www")?
|
## Web link format ("--www")?
|
||||||
elif [[ "${WEBLINK}" -eq 1 ]]; then
|
elif [[ "${WEBLINK}" -eq 1 ]]; then
|
||||||
OUTPUT="$( eval ${SEARCH} \
|
OUTPUT="$( eval ${SEARCH} \
|
||||||
| awk -F ',' '{ printf "%-'${FORMAT_COL1}'s | %s\n", $3, "https://www.exploit-db.com/'${url}'/"$1"/"}' \
|
| awk -F ',' '{ printf "%-'${FORMAT_COL1}'s | %s\n", $3, "https://www.exploit-db.com/'${url}'/"$1 }' \
|
||||||
| sort )"
|
| sort )"
|
||||||
## Just the EDB-ID ("--id")?
|
## Just the EDB-ID ("--id")?
|
||||||
elif [[ "${EDBID}" -eq 1 ]]; then
|
elif [[ "${EDBID}" -eq 1 ]]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue