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:
Srikanth Suresh 2020-03-31 18:56:19 +03:00 committed by GitHub
parent 169b528eaa
commit d04661607c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}"