From d04661607cb64ddca738171a19ab3f946dcae8a5 Mon Sep 17 00:00:00 2001 From: Srikanth Suresh <4140019+srikwit@users.noreply.github.com> Date: Tue, 31 Mar 2020 18:56:19 +0300 Subject: [PATCH] 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 --- searchsploit | 1 + 1 file changed, 1 insertion(+) diff --git a/searchsploit b/searchsploit index 9c2adb9a9..5fb8ae049 100755 --- a/searchsploit +++ b/searchsploit @@ -374,6 +374,7 @@ function nmapxml() "[PRODUCT]") ## We have a name, but no version (yet?) e.g. dnsmasq software="${input}" + echo "${software}" ;; "[VERSION]") software="${software} ${input}"