Bug fix for searchsploit unable to DB information for products
Issue: https://github.com/offensive-security/exploitdb/issues/158 While debugging nmapxml, I found that only those softwares are passed to searchsploitout which are echoed to stdout. In this case, nostromo was classified as a product but there was no echo command for it in the case block "[PRODUCT]". The fix adds a single line of echo to handle this scenario
This commit is contained in:
parent
169b528eaa
commit
d04661607c
1 changed files with 1 additions and 0 deletions
|
@ -374,6 +374,7 @@ function nmapxml()
|
||||||
"[PRODUCT]")
|
"[PRODUCT]")
|
||||||
## We have a name, but no version (yet?) e.g. dnsmasq
|
## We have a name, but no version (yet?) e.g. dnsmasq
|
||||||
software="${input}"
|
software="${input}"
|
||||||
|
echo "${software}"
|
||||||
;;
|
;;
|
||||||
"[VERSION]")
|
"[VERSION]")
|
||||||
software="${software} ${input}"
|
software="${software} ${input}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue