From 36922076b6b2738e0550ead84d7dc306c96604b4 Mon Sep 17 00:00:00 2001 From: Peter Mosmans Date: Thu, 28 May 2020 22:41:04 +0200 Subject: [PATCH] feat: use version first, to enable better sorting --- analyze_hosts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyze_hosts.py b/analyze_hosts.py index 89553f1..4198d6b 100755 --- a/analyze_hosts.py +++ b/analyze_hosts.py @@ -330,7 +330,7 @@ def preflight_checks(options): if tool == 'droopescan': version = 'stats' result, stdout, stderr = execute_command([get_binary(tool), version], options) - options[f"{tool}_version"] = stdout + options[f"version_{tool}"] = stdout if not result: if tool == 'nmap': if not options['dry_run'] and not options['no_portscan']: