Fix for #67 - Show result when their’s only 1 for nmap’s XML mode
This commit is contained in:
parent
c00b72665a
commit
688cd13e96
1 changed files with 5 additions and 6 deletions
11
searchsploit
11
searchsploit
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
# Name: SearchSploit - Exploit-DB's CLI search tool
|
||||
# Version: 3.7.2 (Release date: 2016-12-08)
|
||||
# Version: 3.7.3 (Release date: 2016-12-20)
|
||||
# Written by: Offensive Security, Unix-Ninja, and g0tmi1k
|
||||
# Homepage: https://github.com/offensive-security/exploit-database
|
||||
#
|
||||
|
@ -238,7 +238,7 @@ function searchsploitout()
|
|||
if [[ "${lines}" -gt 100 ]]; then
|
||||
echo -e "[-] Skipping output: ${tmp} (Too many results. Please re-search manually: $0 ${arg} ${tmp})\n" 1>&2
|
||||
## Are there any result?
|
||||
elif [[ "${lines}" -gt 6 ]]; then
|
||||
elif [[ "${lines}" -gt 5 ]]; then
|
||||
echo -e "${out}\n\n"
|
||||
## If there's no results
|
||||
else
|
||||
|
@ -262,7 +262,7 @@ function searchsploitout()
|
|||
if [[ "${lines}" -gt 100 ]]; then
|
||||
echo -e "[-] Skipping output: ${software} (Too many results. Please re-search manually: $0 ${arg} ${software})\n" 1>&2
|
||||
## Are there any result?
|
||||
elif [[ "${lines}" -gt 6 ]]; then
|
||||
elif [[ "${lines}" -gt 5 ]]; then
|
||||
echo -e "${out}\n\n"
|
||||
fi
|
||||
fi
|
||||
|
@ -652,13 +652,12 @@ fi
|
|||
|
||||
## Display colour highlights ("--colour")?
|
||||
if [[ "${COLOUR_TAG}" ]] && [[ "${JSON}" -eq 0 ]]; then
|
||||
OUTPUT=$( echo -e "${OUTPUT}" | eval ${COLOUR_TAG} )
|
||||
[[ "${OUTPUT}" ]] && OUTPUT=$( echo -e "${OUTPUT}" | eval ${COLOUR_TAG} )
|
||||
fi
|
||||
|
||||
|
||||
## Show content
|
||||
echo "${OUTPUT}"
|
||||
|
||||
[[ "${OUTPUT}" ]] && echo "${OUTPUT}"
|
||||
|
||||
## Print footer if NOT in JSON ("--json")
|
||||
if [[ "${JSON}" -eq 0 ]]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue