From c6be42d88bde83477956898b0bbc5441cf42c541 Mon Sep 17 00:00:00 2001 From: dmiller Date: Sun, 26 Jun 2016 04:15:16 +0000 Subject: [PATCH] Avoid blank output from http-fileupload-exploiter --- scripts/http-fileupload-exploiter.nse | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/http-fileupload-exploiter.nse b/scripts/http-fileupload-exploiter.nse index 53e2d06b7..63a10f0da 100644 --- a/scripts/http-fileupload-exploiter.nse +++ b/scripts/http-fileupload-exploiter.nse @@ -326,5 +326,7 @@ action = function(host, port) index = 1 end end - return returntable + if next(returntable) then + return returntable + end end