From 0417b1f9e8e41560efb41e4e391be795c12a5e6d Mon Sep 17 00:00:00 2001 From: g0tmi1k Date: Tue, 29 Aug 2017 11:41:33 +0100 Subject: [PATCH] Fix #97 - JSON Formatting Issue --- searchsploit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/searchsploit b/searchsploit index 2b3187aa9..e14f012a3 100755 --- a/searchsploit +++ b/searchsploit @@ -693,9 +693,9 @@ elif [[ "${EDBID}" -eq 1 ]]; then ## Print JSON format (full options) ("--json")? elif [[ "${JSON}" -eq 1 ]]; then OUTPUT="$( eval ${SEARCH} \ - | awk -F ',' '{ printf "\r\t\t'{'\"Exploit\":\"%s\",\"Platform\":\"%s\",\"Type\":\"%s\",\"Date\":\"%s\",\"Path\":\"'${gitpath}/'%s\",\"EDB-ID\":%s},\n", $2, $5, $6, $4, $3, $1 }' \ - | sed '$ s/,$//g' \ - | sort )" + | awk -F ',' '{ printf "\r\t\t'{'\"Exploit\":\"%s\",\"Platform\":\"%s\",\"Type\":\"%s\",\"Date\":\"%s\",\"Path\":\"'${gitpath}/'%s\",\"EDB-ID\":\"%s\"},\n", $2, $5, $6, $4, $3, $1 }' \ + | sort \ + | sed '$ s/,$//g' )" ## Default view else OUTPUT="$( eval ${SEARCH} \